b='hello'
print(len(b))
运行结果:
a=11
b=4
print(a//b)
a=3
b=2
print(a*b)
s='xinxi'
print(s[1:3])
x=int(10.5)*10
x=10
y=x/5
print(y)