Переведите конструкции языка:
if x%2 = 0 :
print('x is even')
else:
print ('x is odd')

2)
i = 0
while i < 10
if i == 3 :
i += 1
continue

print (i)
if i == 5 :
break

i += 1

3)

if choice =='a':

print('bad guess')

elif choice == 'b':

print('good guess')

elif choice == 'c':

Dasha78906543 Dasha78906543    1   24.12.2019 20:38    1

Другие вопросы по теме Информатика