编写简单的Python程序是巩固基础的好方法。下面我将给出几个简单的Python程序示例,涵盖了基本的数据类型、控制流、函数和文件操作。
示例1:Hello, World!
这是最简单的Python程序,用于打印出 "Hello, World!"。
print("Hello, World!")
示例2:基本数据类型和运算符
这个程序演示了如何使用整数、字符串和布尔值,以及进行简单的数学运算。
# 定义变量
x = 10
y = 5
# 使用运算符
sum = x + y
difference = x - y
product = x * y
quotient = x / y
remainder = x % y
# 布尔值
is_greater = x > y
is_equal = x == y
# 打印结果
print("Sum:", sum)
print("Difference:", difference)
print("Product:", product)
print("Quotient:", quotient)
print("Remainder:", remainder)
print("Is x greater than y?", is_greater)
print("Is x equal to y?", is_equal)
示例3:条件语句和循环
这个程序使用 if
语句和 for
循环来执行不同的操作。
# 列表
numbers = [1, 2, 3, 4, 5]
# for 循环
for num in numbers:
if num % 2 == 0:
print(num, "is even.")
else:
print(num, "is odd.")
# if 语句
user_input = input("Enter a number: ")
number = int(user_input)
if number > 0:
print("The number is positive.")
elif number < 0:
print("The number is negative.")
else:
print("The number is zero.")
示例4:函数
这个程序定义了一个简单的函数,该函数接受两个参数并返回它们的和。
# 定义函数
def add_numbers(a, b):
return a + b
# 调用函数
result = add_numbers(5, 3)
print("The sum is:", result)
示例5:文件操作
这个程序演示了如何在Python中读取和写入文件。
# 写入文件
with open("example.txt", "w") as file:
file.write("Hello, this is an example file.")
# 读取文件
with open("example.txt", "r") as file:
content = file.read()
print("File content:", content)
请注意,在示例5中,我们在写入文件时使用了 "w"
模式,这会覆盖文件中已有的内容(如果文件存在的话)。如果你想在文件的末尾添加内容而不是覆盖它,你可以使用 "a"
(追加)模式。在读取文件时,我们使用了 "r"
(读取)模式。