Задание 2: Исправь ошибки в коде «алгоритм ветвления>> так что бы он заработал num = int(input('Enter a number: ')) if num >= 0: print('The number is positive.') else: print('The number is negative.')
Ответы на вопрос
Ответил itzDasho4ka
0
Ответ:
num = int(input('Enter a number: '))
if num >= 0:
print('The number is non-negative.')
else:
print('The number is negative.')
Объяснение:
Ответил Sez1a
0
num = int(input('Enter a number: '))
if num >= 0:
print('The number is positive.')
else:
print('The number is negative.')
Sez1a:
так код у тебя рабочий, возможно проблема в отступая просто
Новые вопросы