string with decimal to int python code example
Example 1: decimal to int python
print "%.4f" % 3.3333333333
3.3333
print "%.4f" % 6.6666666666
6.6667
Example 2: how to convert int in python
score = 89
score = str(score)
print "%.4f" % 3.3333333333
3.3333
print "%.4f" % 6.6666666666
6.6667
score = 89
score = str(score)