【Python】小练习

print("Hello,world!") if 5>2: print("5大于2") #这是一个注释 """这也是一个注释""" x = 5 y = "Hello, World!" print(x) print(y) x = 5 # x is of type int x = "Steve" # x is now of type str print(x) x = "Bill" #
相关文章
相关标签/搜索