0
problem with first program
print('i will calculate your birh year') x=2016 y=int(input('write your age here:')) if y>0 print('this is your birth year') print(x-y)+print('end of the program') if y<0 print('oh your age cannot be - , try again') and ive got an error: SyntaxError:multiple statements found while compiling a single statement i dont know write new line to escape from this error whst should i change? help! ps.every line used one by one work ok but i dont know how to + them to 1 program :/
3 Réponses
+ 2
in line 6 : use
print(x-y)
print('end of program')
in separate lines
0
Try \n in the string for a new line ...
0
You have a typo line1: "birh" than later on, you wrote "birth"