Add print demo

This commit is contained in:
Henry Lin 2025-08-03 21:30:40 +08:00
parent e87d239e33
commit f3ce5a64ba
2 changed files with 12 additions and 0 deletions

12
0001/print.py Normal file
View File

@ -0,0 +1,12 @@
# 输出字符串
print("Hello World")
# 输出数字
print(2025) # 输出2025
# 输出计算结果
print(5 + 3) # 输出8
# 输出多行内容
print("第一行")
print("第二行")