Posts by Leonardo • 1 point
1 post
-
0
votes1
answer1174
viewsQ: "Syntaxerror: invalid syntax" error
I was trying to run a very simple program through the terminal (use gnome Ubuntu): #encoding: utf-8 y = int(input("Ultimo número: ")) x=0 while x <= y if x % 2 == 0 print (x) x=x+1 and I came…