题目:https://blog.csdn.net/qq_33254766/article/details/133895035
- 输出 "Hello, World!"。
python
print("Hello, World!")
- 创建一个变量,并为其赋值,然后输出该变量的值。
python
x = 10
print(x)
- 输入两个数,然后输出它们的和。
python
a = int(input("Enter first number: "))
b = int(input("Enter second number: "))
print(a + b)
- 使用if语句判断一个数是奇数还是偶数。
python
num = int(input("Enter a number: "))
if num % 2 == 0:
print("Even")
else:
print("Odd")
- 创建一个列表,然后添加、删除元素。
python
lst = [1, 2, 3]
lst.append(4) # 添加
lst.remove(2) # 删除
print(lst)
- 使用for循环输出列表中的每一个元素。
python
for item in lst:
print(item)
- 使用while循环输出从1到10的数字。
python
i = 1
while i <= 10:
print(i)
i += 1
- 定义一个函数,该函数接受两个参数并返回它们的和。
python
def add(a, b):
return a + b
- 使用异常处理来避免除以0的错误。
python
try:
x = 10 / 0
except ZeroDivisionError:
print("Cannot divide by zero!")
- 使用列表推导创建一个包含10个偶数的列表。
python
evens = [i for i in range(2, 21, 2)]
print(evens)
- 创建一个字典并进行增、删、查、改操作。
python
dictionary = {"a": 1, "b": 2}
dictionary["c"] = 3 # 增
del dictionary["a"] # 删
print(dictionary.get("b")) # 查
dictionary["b"] = 4 # 改
print(dictionary)
- 使用Python内置的
len()
函数计算字符串的长度。
python
s = "Python"
print(len(s))
- 使用切片获取字符串的子串。
python
print(s[1:4])
- 创建一个集合,并进行添加和删除操作。
python
my_set = {1, 2, 3}
my_set.add(4) # 添加
my_set.remove(2) # 删除
print(my_set)
- 使用
import
导入一个模块,并使用其中的函数。(这个例子假设我们导入了math
模块)
python
import math
print(math.sqrt(16))
- 创建一个包含多个函数的模块。(这需要在一个.py文件中做,这里只是一个示例)
python
# my_module.py
def func1():
pass
def func2():
pass
- 使用lambda表达式定义一个匿名函数。
python
f = lambda x: x * 2
print(f(5))
- 使用
filter()
和lambda
输出一个列表中的所有偶数。
python
nums = [1, 2, 3, 4, 5, 6]
evens = list(filter(lambda x: x % 2 == 0, nums))
print(evens)
- 使用
map()
和lambda
将列表中的每个数字乘以2。
python
doubled = list(map(lambda x: x * 2, nums))
print(doubled)
- 使用文件操作写入和读取一个文件。
python
with open("file.txt", "w") as f:
f.write("Hello, World!")
with open("file.txt", "r") as f:
content = f.read()
print(content)
- 使用
def
关键字定义一个接受不定数量参数的函数。
python
def print_args(*args):
for arg in args:
print(arg)
print_args(1, 2, 3, 4)
- 使用列表、元组和字典创建一个复合数据结构。
python
data = {
"names": ["Alice", "Bob", "Charlie"],
"ages": (25, 30, 35),
"scores": [85, 90, 95]
}
print(data)
- 使用
enumerate()
遍历列表的索引和元素。
python
for index, value in enumerate(["a", "b", "c"]):
print(index, value)
- 使用
zip()
合并两个列表。
python
names = ["Alice", "Bob", "Charlie"]
scores = [85, 90, 95]
combined = list(zip(names, scores))
print(combined)
- 使用列表的
sort()
方法和sorted()
函数排序一个列表。
python
lst = [3, 1, 4, 1, 5, 9, 2, 6, 5]
lst.sort()
print(lst)
lst2 = [3, 1, 4, 1, 5, 9, 2, 6, 5]
sorted_lst2 = sorted(lst2)
print(sorted_lst2)
- 使用集合的
intersection()
方法找到两个集合的交集。
python
set1 = {1, 2, 3, 4, 5}
set2 = {4, 5, 6, 7, 8}
print(set1.intersection(set2))
- 使用字典的
get()
方法获取字典中的值,如果键不存在则返回默认值。
python
print(dictionary.get("z", "Default Value"))
- 使用列表的
append()
和extend()
方法添加元素。
python
lst = [1, 2, 3]
lst.append(4) # [1, 2, 3, 4]
lst.extend([5, 6]) # [1, 2, 3, 4, 5, 6]
print(lst)
- 使用字符串的
split()
方法分割字符串。
python
s = "Hello, World!"
print(s.split(", "))
- 使用f-string格式化字符串。
python
name = "Alice"
age = 25
print(f"My name is {name} and I am {age} years old.")