Commit 5bb3ee87 by BellCodeEditor

auto save

parent db4ec920
Showing with 15 additions and 0 deletions
# 输出 Hello World!
print("Hello World!")
#输出 食物名称
input_food = input("今晚要吃什么:")
#输出 要吃的食物
print("今晚我要吃-",input_food)
counter = 100 #整数类型变量
miles =100.0 #浮点型变量
name ="bellcode" #字符串类型变量
#输出每个变量的类型
print(type(counter))
print(type(miles))
print(type(name))
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