0
I have an homework
there is some rules and i should write codes with if else code words. who can help me?
2 ответов
+ 6
x = 'woo'
if you_passed:
print(x)
else:
print(x + 'ps')
0
a = 5
if a < 0:
print('Negative number')
else:
print('Positive number')