其他分享
首页 > 其他分享> > 基本运算符

基本运算符

作者:互联网

-------有零有整除--------

print(10/3)

结果:3.33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333

-------只取整数--------

print(10//3)

结果:3

-------取余--------

print(10%3)

结果:1

-------次方--------

print(10**3)

结果:1000

 

标签:基本,10,结果,零有,只取,运算符,print
来源: https://www.cnblogs.com/ludundun/p/11260623.html