Closed ghost closed 4 years ago
python3:
>>> 10 / 2
5.0
>>> int(10 / 2)
5
python2:
>>> 10 / 2
5
>>> int(10 / 2)
5
add int()
Compatible with both python2 and python3
Thanks to PYGC's update, which making this script can be executed either by python2 or python3.
Fix the following bugs