📜  备忘单python(1)

📅  最后修改于: 2023-12-03 15:08:09.908000             🧑  作者: Mango

备忘单Python

简介

备忘单Python是一个用于Python程序员的实用工具,提供了Python编写中最常用的代码片段和方法。

安装

备忘单Python可以通过pip安装:

pip install memorandum-python
使用

导入备忘单Python:

import memorandum

备忘单Python的代码片段可分为以下几类:

基础

字符串操作

  • 字符串拼接:
string1 = 'Hello'
string2 = 'World'
string3 = string1 + ' ' + string2
print(string3)  # 输出:'Hello World'
  • 字符串替换:
string = 'Hello World'
new_string = string.replace('World', 'Python')
print(new_string)  # 输出:'Hello Python'
  • 字符串切片:
string = 'Hello World'
sub_string = string[0:5]
print(sub_string)  # 输出:'Hello'

列表操作

  • 列表切片:
list = [1, 2, 3, 4, 5]
sub_list = list[0:3]
print(sub_list)  # 输出:[1, 2, 3]
文件操作

读取文件

with open('file.txt', 'r') as file:
    content = file.read()
    print(content)

写入文件

with open('file.txt', 'w') as file:
    file.write('Hello World')
网络请求
import requests

response = requests.get('http://www.example.com')
print(response.text)
数据库连接
import MySQLdb

db = MySQLdb.connect(
    host='localhost',
    user='root',
    password='password',
    database='example_db',
    port=3306
)

cursor = db.cursor()
cursor.execute('SELECT * FROM example')
result = cursor.fetchall()
print(result)
结语

备忘单Python是程序员必备的工具之一,可以帮助程序员更快地编写Python代码。如果您有需要添加的代码片段或提出改善意见,请联系我们。