0
x = 7425 y = 550 print(x/y) Where is the error in this code?
6 odpowiedzi
+ 3
What is the error ? And why do you think it will give an error ?
And please use the language name in tags that is relevant to your question.
Use description part for the code and discussion and title for the question.
+ 2
Martin Taylor
here's in Ruby to complete your answer...
x = 7425.0
y = 550.0
puts x/y
+ 1
This is Python's first project Honon solution :
x=7425
print (x/550)
As they want to meet the time that takes a distance from the distance 7425 It is divided on 550 because the distance 550 is cut off by the body at one hour
0
x=7425
print(x/550)
0
Can you plz explain what exactly happen in that code?