If/else Statements
Decision making is required when we want to execute a code only if a certain condition is satisfied.
The if
, elif
, else
statement is used in Python for decision making.
123456price = 999 if price > 1000: print('The price is high. I won't buy it') else: print('OK, I will buy it')
Tudo estava claro?
Obrigado pelo seu feedback!
Seção 3. Capítulo 2
Pergunte à IA
Pergunte à IA
Pergunte o que quiser ou experimente uma das perguntas sugeridas para iniciar nosso bate-papo
Awesome!
Completion rate improved to 2.7
If/else Statements
Deslize para mostrar o menu
Decision making is required when we want to execute a code only if a certain condition is satisfied.
The if
, elif
, else
statement is used in Python for decision making.
123456price = 999 if price > 1000: print('The price is high. I won't buy it') else: print('OK, I will buy it')
Tudo estava claro?
Obrigado pelo seu feedback!
Seção 3. Capítulo 2