Commit 0316e163 by BellCodeEditor

auto save

parent 2ebfb799
Showing with 28 additions and 3 deletions
"""
s="子俊\t"*3
print(s)
print("子俊*3")
m=8**3
print(int(m))
print(m)
判断是否不等于?
True:是,不等于
False:不是,等于
非!
r=6
p=3.1415926 p=3.1415926
s=p*r**2
print("%0.4f"%s)
"""
r=6 r=6
a=p*r*r p=3.1415926
print("圆的面积是:%0.3f"%a) s=p*r**2
\ No newline at end of file s1=round(s,3)
print(s1)
r=input("请输入半径值:")
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment