+ 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.

20th Jan 2022, 7:28 PM
Gamr Kidbeast
3 Answers
+ 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
20th Jan 2022, 7:36 PM
Mafdi
Mafdi - avatar
+ 2
thank you so much for helping me with this problem.
20th Jan 2022, 8:09 PM
Gamr Kidbeast
+ 1
the first one
20th Jan 2022, 7:48 PM
Gamr Kidbeast