Переведите конструкции языка:
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':