python int to int 32 code example
Example 1: int + 1 int python
n = 12 # 'n' is a number
n += 1 # '+=' means that 'n' is equal the old 'n' + the number on the right. the number on the right can be any number
print(n)
Example 2: decimal to int python
print "%.4f" % 3.3333333333
3.3333
print "%.4f" % 6.6666666666
6.6667