On this page

Python入门

Python 入门指南

Python 是一种简单易学、功能强大的编程语言,非常适合初学者入门。以下是 Python 的基础知识概览:

1. 安装 Python

2. 第一个 Python 程序

创建一个名为 hello.py 的文件,内容如下:

print("Hello, World!")

运行程序:

python hello.py

3. 基本语法

变量

name = "Alice"
age = 25
height = 1.75
is_student = True

数据类型

  • 整数: 42
  • 浮点数: 3.14
  • 字符串: "Python"
  • 布尔值: True, False
  • 列表: [1, 2, 3]
  • 元组: (1, 2, 3)
  • 字典: {"name": "Alice", "age": 25}

4. 控制结构

条件语句

if age < 18:
    print("未成年")
elif age >= 18 and age < 60:
    print("成年人")
else:
    print("老年人")

循环

# for 循环
for i in range(5):
    print(i)

# while 循环
count = 0
while count < 5:
    print(count)
    count += 1

5. 函数

def greet(name):
    return f"Hello, {name}!"

print(greet("Alice"))

6. 列表操作

fruits = ["apple", "banana", "cherry"]

# 添加元素
fruits.append("orange")

# 访问元素
print(fruits[0])  # apple

# 遍历列表
for fruit in fruits:
    print(fruit)

7. 文件操作

# 写入文件
with open("test.txt", "w") as f:
    f.write("Hello, Python!")

# 读取文件
with open("test.txt", "r") as f:
    content = f.read()
    print(content)

8. 异常处理

try:
    result = 10 / 0
except ZeroDivisionError:
    print("不能除以零!")
finally:
    print("执行完毕")

9. 常用模块

import math
print(math.sqrt(16))  # 4.0

from datetime import datetime
print(datetime.now())

10. 面向对象编程

class Person:
    def __init__(self, name, age):
        self.name = name
        self.age = age
    
    def introduce(self):
        print(f"我叫{self.name},今年{self.age}岁")

p = Person("Alice", 25)
p.introduce()

学习资源推荐

  1. 官方文档: https://docs.python.org/3/
  2. 在线教程: Codecademy, W3Schools, 菜鸟教程
  3. 书籍: 《Python编程:从入门到实践》

下一步建议

  1. 安装一个代码编辑器 (VS Code, PyCharm)
  2. 尝试解决简单问题 (计算器、猜数字游戏)
  3. 学习使用 pip 安装第三方库
  4. 探索 Python 在不同领域的应用 (Web开发、数据分析、人工智能)

坚持练习是学习编程的关键,每天写一点代码,逐步提高你的技能!