Towns and villages
Solved
tao
-
tao -
tao -
Hello,
this program:
gives me an error message:
and I don't understand why ...
Could you help me ???
Thanks !!
EDIT: Added code tags
this program:
NbLieu = int(input()) ville = 0 for loop in range (NbLieu): pop = int(input()) if pop > 10000: ville = ville + 1 else : ville = ville + 0 print(ville)
gives me an error message:
File "exe", line 5
if pop > 10000:
^
SyntaxError: invalid syntax
and I don't understand why ...
Could you help me ???
Thanks !!
EDIT: Added code tags