- 2
How much time will it take to complete a distance of 7425 miles, whose average speed is 550 miles per hour
It was showing "unexpected intend" what does this mean help me to solve this problem ,this question is from python course
4 Réponses
+ 11
Maybe there is a space before print statement
print(7425/550)
+ 4
Because you gave unexpected gap.Write directly:
print(7425/550)#There should be no gap before this line
Also delete your duplicate question
+ 1
Mohit Maravi
I think you have space before print function. If so then remove space.
0
My code ;- print(7425/550)