2025-08-03 21:30:40 +08:00

13 lines
194 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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