继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

Python 基础入门指南

汪汪一只猫
关注TA
已关注
手记 611
粉丝 130
获赞 719
概述

本文详细介绍了Python编程语言的基础知识,包括语法、文件操作、异常处理及面向对象编程等方面的内容。此外,文章还涵盖了数据结构、高级特性和Web开发的相关知识,展示了Python在多种领域的广泛应用。通过学习本文,读者可以快速掌握Python的基本使用方法和开发技巧。文中提供的示例代码和解释有助于加深对Python加解密相关概念的理解。

1. Python 简介

Python 是一种高级编程语言,由 Guido van Rossum 于 1989 年底开始设计,第一个公开发行版于 1991 年发布。Python 是一种解释型、交互式、面向对象的语言,它的语法简洁明了,有着独特的可读性。Python 的设计哲学是强调代码的可读性和简洁的语法。它支持多种编程范式,包括面向对象、命令式、函数式编程或过程式编程。

Python 语言具有丰富的库支持,这使得 Python 可以用于多种领域,如 Web 开发、科学计算、人工智能、数据科学等。Python 的社区非常活跃,经常会有新的库和工具发布。Python 还有一个优点是它有一个强大的标准库,这使得 Python 可以快速开发原型,并且可以很容易地集成到现有的应用程序中。

Python 的语法简洁,易于学习,使得它成为一种适合初学者的语言。Python 的文档也十分完备,社区也非常活跃,这使得初学者可以很容易找到解决问题的方法。

2. Python 安装与环境搭建

安装 Python 可以通过官网下载最新版本的安装包。访问 Python 官网下载页面,选择对应的操作系统版本下载安装包。安装过程中,可以选择安装路径,默认安装路径一般为 C:\Python39。安装完毕后,需要将 Python 的路径添加到系统环境变量中,以便在命令行中直接使用 Python。

安装完成后,可以通过命令行输入 python -V 或者 python --version 来查看 Python 的版本信息。

2.1 Python 虚拟环境

在开发过程中,为了隔离开发环境和项目依赖,可以使用虚拟环境来管理 Python 的依赖库。Python 提供了 venv 模块来创建虚拟环境。

import venv
import os

# 创建虚拟环境
venv.create("myenv", with_pip=True)

# 激活虚拟环境
os.system("myenv\\Scripts\\activate")

使用 venv 创建虚拟环境时,会自动创建一个 Scripts 目录,该目录下包含激活和解除激活虚拟环境的脚本。激活虚拟环境后,可以使用 pip 来安装、升级和卸载包。

3. Python 基本语法

Python 的语法简洁明了,容易上手。它的基本语法包括变量、数据类型、运算符、条件语句、循环语句等。

3.1 变量与类型

在 Python 中,变量不需要声明类型,直接赋值即可。

# 变量赋值
a = 10
b = 3.14
c = "Hello, World!"

# 函数获取变量类型
print(type(a))  # <class 'int'>
print(type(b))  # <class 'float'>
print(type(c))  # <class 'str'>

Python 的基本数据类型包括整型、浮点型、布尔型和字符串型。

# 整型
a = 10

# 浮点型
b = 3.14

# 布尔型
c = True

# 字符串型
d = "Hello, World!"

3.2 运算符

Python 支持的运算符包括算术运算符、位运算符、比较运算符、赋值运算符、逻辑运算符、成员运算符和身份运算符。例如:

# 算术运算符
a = 10
b = 3
print(a + b)   # 13
print(a - b)   # 7
print(a * b)   # 30
print(a / b)   # 3.3333333333333335
print(a % b)   # 1
print(a ** b)  # 1000

# 位运算符
a = 60        # 二进制形式为 0011 1100
b = 13        # 二进制形式为 0000 1101
print(a & b)  # 12 二进制形式为 0000 1100
print(a | b)  # 61 二进制形式为 0011 1101
print(a ^ b)  # 49 二进制形式为 0011 0001
print(~a)     # -61 二进制形式为 1100 0011
print(a << 2) # 240 二进制形式为 1111 0000
print(a >> 2) # 15 二进制形式为 0000 1111

# 比较运算符
a = 10
b = 3
print(a == b)  # False
print(a != b)  # True
print(a > b)   # True
print(a < b)   # False
print(a >= b)  # True
print(a <= b)  # False

# 逻辑运算符
a = True
b = False
print(a and b)  # False
print(a or b)   # True
print(not b)    # True

# 成员运算符
list = [1, 2, 3, 4, 5]
print(1 in list)  # True
print(10 not in list)  # True

# 身份运算符
a = 10
b = 10
print(a is b)  # True
b = 11
print(a is b)  # False

3.3 控制语句

Python 的控制语句包括条件语句和循环语句。

3.3.1 条件语句

Python 使用 ifelifelse 关键字来实现条件语句。

# if 语句
a = 10
if a > 5:
    print("a > 5")

# if-else 语句
a = 3
if a > 5:
    print("a > 5")
else:
    print("a <= 5")

# if-elif-else 语句
a = 8
if a > 10:
    print("a > 10")
elif a > 5:
    print("5 < a <= 10")
else:
    print("a <= 5")

3.3.2 循环语句

Python 提供了 forwhile 循环语句。

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

# while 循环
count = 0
while count < 5:
    print(count)
    count += 1
4. 函数与模块

Python 中的函数用于执行特定任务,可以接受输入参数,并返回输出结果。Python 中的模块是包含 Python 代码的文件,可以包含函数、类和其他对象。

4.1 函数

Python 中定义函数使用 def 关键字。

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

print(greet("World"))

4.2 模块

模块可以在文件中定义,使用 import 关键字导入。

# 定义模块
# my_module.py
def greet(name):
    return f"Hello, {name}"

# 导入模块
import my_module

print(my_module.greet("World"))

4.3 包

包是一个包含多个模块的文件夹,通常包含一个 __init__.py 文件,用于初始化包。

# my_package/__init__.py
def __init__():
    print("Initializing my_package")

# my_package/module.py
def greet(name):
    return f"Hello, {name}"

# 使用包
import my_package.module

print(my_package.module.greet("World"))
5. 文件操作

Python 提供了多种方式来读写文件,包括 open 函数和 with 语句。

5.1 文件读写

使用 open 函数可以打开文件,并可以指定文件的读写模式。常见的模式有:

  • 'r':只读模式,不指定模式时默认为只读模式。
  • 'w':写模式,会清空文件内容。
  • 'a':追加模式,会在文件末尾追加内容。
  • 'b':二进制模式。
  • '+':读写模式。
# 写文件
with open("output.txt", "w") as file:
    file.write("Hello, World!")
    file.writelines(["Line 1\n", "Line 2\n", "Line 3\n"])

# 读文件
with open("output.txt", "r") as file:
    print(file.read())
    file.seek(0)  # 移动文件指针到开头
    print(file.readline())  # 读取一行
    file.seek(0)
    for line in file:
        print(line)

5.2 文件对象方法

文件对象提供了多种方法来读写文件内容。

# 写文件
with open("output.txt", "w") as file:
    file.write("Hello, World!")
    file.writelines(["Line 1\n", "Line 2\n", "Line 3\n"])

# 读文件
with open("output.txt", "r") as file:
    print(file.read())
    file.seek(0)  # 移动文件指针到开头
    print(file.readline())  # 读取一行
    file.seek(0)
    for line in file:
        print(line)
6. 异常处理

Python 中使用 try-except 语句来捕获异常。

try:
    result = 10 / 0
except ZeroDivisionError as e:
    print(f"Error: {e}")

6.1 异常类型

Python 标准库提供了多种内置异常类型,常见的有 TypeErrorValueErrorIndexErrorKeyErrorNameErrorFileNotFoundErrorZeroDivisionError 等。

6.2 自定义异常

可以自定义异常,继承自 Exception 类。

class MyException(Exception):
    def __init__(self, message):
        self.message = message

try:
    raise MyException("An error occurred")
except MyException as e:
    print(e.message)
7. 面向对象编程

Python 是一种面向对象的语言,支持类和对象的概念。

7.1 类定义

定义类使用 class 关键字。

class Person:
    def __init__(self, name, age):
        self.name = name
        self.age = age

    def display(self):
        print(f"Name: {self.name}, Age: {self.age}")

person = Person("Alice", 20)
person.display()

7.2 继承与多态

Python 支持类的继承,类的继承可以实现多态。

class Animal:
    def __init__(self, name):
        self.name = name

    def speak(self):
        pass

class Dog(Animal):
    def speak(self):
        return "Woof"

class Cat(Animal):
    def speak(self):
        return "Meow"

dog = Dog("Buddy")
cat = Cat("Whiskers")

print(dog.speak())  # Woof
print(cat.speak())  # Meow

7.3 特殊方法

Python 中的特殊方法以双下划线开头和结尾,例如 __init____str____repr__ 等。

class Person:
    def __init__(self, name, age):
        self.name = name
        self.age = age

    def __str__(self):
        return f"Name: {self.name}, Age: {self.age}"

    def __repr__(self):
        return f"Person('{self.name}', {self.age})"

person = Person("Alice", 20)
print(person)  # Name: Alice, Age: 20
print(repr(person))  # Person('Alice', 20)
8. 数据结构

Python 提供了多种内置的数据结构,包括列表、元组、字典和集合。

8.1 列表

列表是可变的序列,使用方括号 [] 定义。

# 列表
list = [1, 2, 3, 4, 5]
list.append(6)
list.remove(3)
print(list)  # [1, 2, 4, 5, 6]

8.2 元组

元组是不可变的序列,使用圆括号 () 定义。

# 元组
tuple = (1, 2, 3, 4, 5)
print(tuple[0])  # 1

8.3 字典

字典是键值对的集合,使用花括号 {} 定义。

# 字典
dict = {"name": "Alice", "age": 20}
dict["name"] = "Bob"
dict["city"] = "New York"
print(dict)  # {'name': 'Bob', 'age': 20, 'city': 'New York'}

8.4 集合

集合是唯一元素的集合,使用花括号 {} 或者 set() 函数定义。

# 集合
set = {1, 2, 3, 4, 5}
set.add(6)
set.remove(3)
print(set)  # {1, 2, 4, 5, 6}
9. 高级特性

Python 提供了多种高级特性,如生成器、装饰器、元类等。

9.1 生成器

生成器是一种特殊的迭代器,使用 yield 关键字定义。

def fibonacci(n):
    a, b = 0, 1
    while a < n:
        yield a
        a, b = b, a + b

for num in fibonacci(10):
    print(num)  # 0 1 1 2 3 5

9.2 装饰器

装饰器是一种修改函数行为的高级工具,使用 @decorator 语法糖定义。

def uppercase_decorator(func):
    def wrapper(text):
        return func(text).upper()
    return wrapper

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

print(greet("World"))  # HELLO, WORLD

9.3 元类

元类是一种可以控制类创建的高级工具,使用 type() 函数定义。

def upper_attr(class_name, class_parents, class_attr):
    attrs = {}
    for key, value in class_attr.items():
        if not key.startswith("__"):
            attrs[key.upper()] = value
        else:
            attrs[key] = value
    return type(class_name, class_parents, attrs)

class UpperAttrMetaClass(type):
    def __new__(cls, name, parents, attrs):
        return upper_attr(name, parents, attrs)

class UpperAttr(metaclass=UpperAttrMetaClass):
    pass

print(hasattr(UpperAttr, "HELLO"))  # False
print(hasattr(UpperAttr, "HELLO_ATTR"))  # True
10. Web 开发

Python 在 Web 开发领域有着广泛的应用,如 Flask、Django 框架。

10.1 Flask

Flask 是一个轻量级的 Web 框架。

from flask import Flask

app = Flask(__name__)

@app.route("/")
def hello():
    return "Hello, World!"

if __name__ == "__main__":
    app.run()

10.2 Django

Django 是一个全功能的 Web 框架。

# settings.py
from django.conf import settings

settings.configure(
    DEBUG=True,
    ROOT_URLCONF="mysite.urls",
    INSTALLED_APPS=("django.contrib.auth", "django.contrib.contenttypes", "django.contrib.sessions", "django.contrib.messages", "django.contrib.staticfiles", "mysite"),
)

# urls.py
from django.urls import path
from mysite.views import hello_world

urlpatterns = [
    path("", hello_world),
]

# views.py
from django.http import HttpResponse

def hello_world(request):
    return HttpResponse("Hello, World!")

# main.py
import os
from django.core.wsgi import get_wsgi_application

os.environ.setdefault("DJANGO_SETTINGS_MODULE", "mysite.settings")
application = get_wsgi_application()
11. 总结

本文介绍了 Python 的基本语法、文件操作、异常处理、面向对象编程、数据结构、高级特性和 Web 开发。Python 是一个强大的编程语言,有着丰富的库支持和活跃的社区,可以用于多种领域。希望本文对你学习 Python 有所帮助。

参考资料:

打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP