📚 Python基础知识

Python变量和基本数据类型:

# 基本数据类型演示
name = "Python学习者"
age = 25
height = 1.75
is_student = True

print(f"姓名: {name}")
print(f"年龄: {age}")
print(f"身高: {height}m")
print(f"是否为学生: {is_student}")

# 类型检查
print(f"name的类型: {type(name)}")
print(f"age的类型: {type(age)}")
print(f"height的类型: {type(height)}")
print(f"is_student的类型: {type(is_student)}")

条件语句和循环:

# 条件语句
score = 85

if score >= 90:
    grade = "A"
elif score >= 80:
    grade = "B"
elif score >= 70:
    grade = "C"
else:
    grade = "D"

print(f"分数: {score}, 等级: {grade}")

# 循环演示
print("\n数字1-5:")
for i in range(1, 6):
    print(f"数字: {i}")

# 列表循环
fruits = ["苹果", "香蕉", "橙子"]
print("\n水果列表:")
for fruit in fruits:
    print(f"- {fruit}")

函数定义和使用:

# 定义函数
def greet(name, age=18):
    return f"你好,{name}!你今年{age}岁。"

def calculate_area(length, width):
    """计算矩形面积"""
    area = length * width
    return area

# 使用函数
message = greet("小明", 20)
print(message)

area = calculate_area(5, 3)
print(f"矩形面积: {area}")

# 带默认值的参数
message2 = greet("小红")  # 使用默认年龄
print(message2)

💻 代码编辑器

在这里编写和测试你的Python代码:

📖 常用函数参考

print()
输出文本到控制台
len()
返回对象的长度
type()
返回对象的类型
range()
生成数字序列
input()
获取用户输入
str()
将对象转换为字符串

🎯 函数演示

点击左侧的函数名称查看详细说明和示例