+ 2
Calculating in python
What is the different between print (100//2) or print(100/2).
2 Antworten
+ 4
// floor or integer division operator
/ float or precision division operator in python.
100//2 = 50 (int type) And 101//2 = 50
100/2 = 50.0 (float type) And 101/2 = 50.5
+ 1
Who can code a 3d game for me