Commit 9d7b4a11 by BellCodeEditor

save project

parent 6974157d
Showing with 2 additions and 15 deletions
print("hello world")
\ No newline at end of file
# 输出 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