python基本运算(整除、除法、次幂、幂函数、最大最小值函数)

from sys import *
from math import *

a=5
b=2
t=a//b
r=a/b
m=2**3
p=pow(2,3,5)
mas=max(1,2,3,4,5,6)
mi=min(1,2,3,4,5,6)
print("{} {} {} {} {} {}".format(t,r,m,p,mas,mi))

你可能感兴趣的:(Python,追梦算法)