+ 1
on project 6.1 i can not get it working the code i run is print("7425//550") it alswase says i got it wrong.please help me.
3 Respuestas
+ 4
Remove the quotes "".
You should use numbers for calculations not strings.
print("1 + 1")
output:
1 + 1
print(1 + 1)
output:
2
in which python course is this question?
it's in python for beginners.
number 8 not 6.1
time = 7425 / 550
print (time)
to get a float use the division operator /.
to get an integer you can use the floor division operator //.
Gamr Kidbeast
+ 2
thank you so much for helping me with this problem.
+ 1
the first one