Python的数值类型和操作符
整形和基本的操作符很简单的一个程序来解释这个类型的相关内容:i = 6 # declare integeri, j = 6, 7 # declare two integers on one line: i becomes 6 and j becomes 7print(i,j)j = 6 + 7 * 92 / (5-3) # basic calculationsprint(j)i += 2 # increase i with 2print(i)i -= 1 ...