0
What changes are required to make the float output into integer?
7/4=1.75 I only want to print 1
1 Resposta
+ 3
Sounds like what you're looking for is called floor division. In Python it's invoked using the syntax
X//Y
7/4=1.75 I only want to print 1