Commit 49b9098e by BellCodeEditor

auto save

parent d8c7c8ed
Showing with 28 additions and 5 deletions
name=input("你是谁")
print(name)
x=12
print(x)
\ No newline at end of file
"""
import turtle
while True:
b=input("你想要什么颜色的星星,请输入英文:")
a=turtle.Pen()
a.pencolor(b)
a.fillcolor(b)
a.begin_fill()
for i in range(5):
a.forward(200)
a.right(144)
a.end_fill()
"""
"""
a=input("你是不是傻呀?请输入(是)或(不是)")
if a=="是":
print("你是真傻")
elif a=="不是":
print("你还真是傻")
else:
print("太傻了你")
"""
a=["一",1,"二",2,"三",3,"四",4]
b={"一":1,"二":2,"三":3,"四":4}
print(len(a))
print(len(b))
\ No newline at end of file
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