每个 Python 开发人员需要掌握的 5 个基本内置模块
wptr33 2025-01-31 15:39 31 浏览
# Import the sys module
import sys
# Get the Python version
python_version = sys.version
print("Python version:", python_version)
# Get the platform information
platform = sys.platform
print("Platform information:", platform)
# Get the Python path
python_path = sys.path
print("Python path:", python_path)
# Access command-line arguments
arguments = sys.argv
# Print the command-line arguments
print("Command-line arguments:", arguments)
# Get the first argument passed in
first_argument = sys.argv[1] if len(sys.argv) > 1 else None
print("First argument passed in:", first_argument)
# Terminate the program with a specific exit code
exit_code = 0 # Example exit code
sys.exit(exit_code) # Terminate the program with the specified exit code
- os模块: 使用os模块,我们可以执行与操作系统相关的各种操作。它就像一个方便的工具箱,用于管理文件、目录和检查它们是否存在。
# Import the os module
import os
# Get the current working directory
current_directory = os.getcwd()
# List files and directories in a directory
directory_path = "/path/to/directory"
directory_contents = os.listdir(directory_path)
# Check if a file or directory exists
path = "/path/to/file_or_directory"
exists = os.path.exists(path)
# Get information about a file
file_info = os.stat(path)
# Create a directory
os.mkdir("new_directory")
# Rename a file
os.rename("old_file.txt", "new_file.txt")
# Remove a file
os.remove("file_to_remove.txt")
# Change current working directory
os.chdir("/new/directory/path")
- math模块:将数学模块视为 Python 中值得信赖的计算器。它包含用于执行数学运算的函数,例如平方根、三角函数和四舍五入数。
# Import the math module
import math
# Perform basic mathematical operations
result_sqrt = math.sqrt(25) # Square root of 25
result_pow = math.pow(2, 3) # 2 raised to the power of 3
result_abs = math.abs(-5) # Absolute value of -5
# Calculate trigonometric functions
sine_value = math.sin(math.pi / 2) # Sine of π/2 (90 degrees)
cosine_value = math.cos(math.pi) # Cosine of π (180 degrees)
tangent_value = math.tan(math.pi/4) # Tangent of π/4 (45 degrees)
# Round numbers to the nearest integer
rounded_number_floor = math.floor(3.6) # Rounds down to 3
rounded_number_ceil = math.ceil(3.2) # Rounds up to 4
rounded_number_round = round(3.5) # Rounds to the nearest integer (4)
# Calculate logarithms
log_value = math.log(10, 2) # Logarithm of 10 to the base 2
# Calculate factorial
factorial_value = math.factorial(5) # Factorial of 5 (5!)
# Convert angles between degrees and radians
degrees_to_radians = math.radians(90) # Convert 90 degrees to radians
radians_to_degrees = math.degrees(math.pi / 2) # Convert π/2 radians to degrees
- random模块:它就像一顶魔术帽,可以拉出随机数或打乱列表,为我们的程序增添一点不可预测性。
# Import the random module
import random
# Generate random integers within a range
random_number = random.randint(1, 10) # Generates a random integer between 1 and 10
# Shuffle a list
my_list = [1, 2, 3, 4, 5]
random.shuffle(my_list) # Shuffles the list randomly
print("Shuffled List:", my_list)
# Generate a random float between 0 and 1
random_float = random.random() # Generates a random float between 0 and 1
print("Random Float:", random_float)
# Choose a random element from a sequence
my_sequence = ["apple", "banana", "orange", "grape"]
random_element = random.choice(my_sequence) # Chooses a random element from the sequence
print("Random Element:", random_element)
# Generate a random sample from a population
sample = random.sample(range(1, 101), 5) # Generate 5 unique random numbers from 1 to 100
print("Random Sample:", sample)
# Randomly select an element with replacement
random_element_with_replacement = random.choices(["A", "B", "C", "D"], k=3) # Select 3 elements with replacement
print("Random Element with Replacement:", random_element_with_replacement)
# Set the random seed for reproducibility
random.seed(1234) # Set the random seed to 1234
print(random.randint(1, 100)) # Output: 17
print(random.randint(1, 100)) # Output: 72
print(random.randint(1, 100)) # Output: 97
# Resetting the seed to the same value will produce the same sequence of random numbers
random.seed(1234)
print(random.randint(1, 100)) # Output: 17
print(random.randint(1, 100)) # Output: 72
print(random.randint(1, 100)) # Output: 97
- datatime模块: 是否需要在代码中使用日期和时间?这就是 datetime 模块派上用场的地方。它就像一个日历,可以帮助我们毫不费力地创建、格式化和操作日期和时间。
# Import the datetime module
import datetime
# Get the current date and time
current_datetime = datetime.datetime.now()
# Format a datetime object as a string
formatted_date = current_datetime.strftime("%Y-%m-%d %H:%M:%S") # Format as YYYY-MM-DD HH:MM:SS
print("Formatted Date:", formatted_date)
# Create a datetime object from a string
date_string = "2024-05-08"
converted_date = datetime.datetime.strptime(date_string, "%Y-%m-%d")
# Calculate the difference between two dates
date1 = datetime.datetime(2024, 5, 8)
date2 = datetime.datetime(2024, 5, 10)
date_difference = date2 - date1 # Difference between date2 and date1
print("Difference between two dates:", date_difference)
# Get the current date
current_date = datetime.date.today()
print(current_date.strftime("%Y-%m-%d")) # Print the current date in the format YYYY-MM-DD
# Calculate the difference between two datetime objects
timedelta = datetime.timedelta(days=7)
future_date = current_date + timedelta # Date 7 days from now
print("Future Date (7 days from now):", future_date)
# Get the day of the week
day_of_week = current_date.strftime("%A") # Full name of the day (e.g., Monday)
相关推荐
- [常用工具] git基础学习笔记_git工具有哪些
-
添加推送信息,-m=messagegitcommit-m“添加注释”查看状态...
- centos7安装部署gitlab_centos7安装git服务器
-
一、Gitlab介1.1gitlab信息GitLab是利用RubyonRails一个开源的版本管理系统,实现一个自托管的Git项目仓库,可通过Web界面进行访问公开的或者私人项目。...
- 太高效了!玩了这么久的Linux,居然不知道这7个终端快捷键
-
作为Linux用户,大家肯定在Linux终端下敲过无数的命令。有的命令很短,比如:ls、cd、pwd之类,这种命令大家毫无压力。但是,有些命令就比较长了,比如:...
- 提高开发速度还能保证质量的10个小窍门
-
养成坏习惯真是分分钟的事儿,而养成好习惯却很难。我发现,把那些对我有用的习惯写下来,能让我坚持住已经花心思养成的好习惯。...
- 版本管理最好用的工具,你懂多少?
-
版本控制(Revisioncontrol)是一种在开发的过程中用于管理我们对文件、目录或工程等内容的修改历史,方便查看更改历史记录,备份以便恢复以前的版本的软件工程技术。...
- Git回退到某个版本_git回退到某个版本详细步骤
-
在开发过程,有时会遇到合并代码或者合并主分支代码导致自己分支代码冲突等问题,这时我们需要回退到某个commit_id版本1,查看所有历史版本,获取git的某个历史版本id...
- Kubernetes + Jenkins + Harbor 全景实战手册
-
Kubernetes+Jenkins+Harbor全景实战手册在现代企业级DevOps体系中,Kubernetes(K8s)、Jenkins和Harbor组成的CI/CD流水...
- git常用命令整理_git常见命令
-
一、Git仓库完整迁移完整迁移,就是指,不仅将所有代码移植到新的仓库,而且要保留所有的commit记录1.随便找个文件夹,从原地址克隆一份裸版本库...
- 第三章:Git分支管理(多人协作基础)
-
3.1分支基本概念分支是Git最强大的功能之一,它允许你在主线之外创建独立的开发线路,互不干扰。理解分支的工作原理是掌握Git的关键。核心概念:HEAD:指向当前分支的指针...
- 云效Codeup怎么创建分支并进行分支管理
-
云效Codeup怎么创建分支并进行分支管理,分支是为了将修改记录分叉备份保存,不受其他分支的影响,所以在同一个代码库里可以同时进行多个修改。创建仓库时,会自动创建Master分支作为默认分支,后续...
- git 如何删除本地和远程分支?_git怎么删除远程仓库
-
Git分支对于开发人员来说是一项强大的功能,但要维护干净的存储库,就需要知道如何删除过时的分支。本指南涵盖了您需要了解的有关本地和远程删除Git分支的所有信息。了解Git分支...
- git 实现一份代码push到两个git地址上
-
一直以来想把自己的博客代码托管到github和coding上想一次更改一次push两个地址一起更新今天有空查资料实践了下本博客的github地址coding的git地址如果是Gi...
- git操作:cherry-pick和rebase_git cherry-pick bad object
-
在编码中经常涉及到分支之间的代码同步问题,那就需要cherry-pick和rebase命令问题:如何将某个分支的多个commit合并到另一个分支,并在另一个分支只保留一个commit记录解答:假设有两...
- 模型文件硬塞进 Git,GitHub 直接打回原形:使用Git-LFS管理大文件
-
前言最近接手了一个计算机视觉项目代码是屎山就不说了,反正我也不看代码主要就是构建一下docker镜像,测试一下部署的兼容性这本来不难但是,国内服务器的网络环境实在是恶劣,需要配置各种镜像(dock...
- 防弹少年团田柾国《Euphoria》2周年 获世界实时趋势榜1位 恭喜呀
-
当天韩国时间凌晨3时左右,该曲在Twitter上以“2YearsWithEuphoria”的HashTag登上了世界趋势1位。在韩国推特实时趋势中,从上午开始到现在“Euphoria2岁”的Has...
- 一周热门
-
-
C# 13 和 .NET 9 全知道 :13 使用 ASP.NET Core 构建网站 (1)
-
程序员的开源月刊《HelloGitHub》第 71 期
-
详细介绍一下Redis的Watch机制,可以利用Watch机制来做什么?
-
假如有100W个用户抢一张票,除了负载均衡办法,怎么支持高并发?
-
Java面试必考问题:什么是乐观锁与悲观锁
-
如何将AI助手接入微信(打开ai手机助手)
-
SparkSQL——DataFrame的创建与使用
-
redission YYDS spring boot redission 使用
-
一文带你了解Redis与Memcached? redis与memcached的区别
-
如何利用Redis进行事务处理呢? 如何利用redis进行事务处理呢英文
-
- 最近发表
- 标签列表
-
- git pull (33)
- git fetch (35)
- mysql insert (35)
- mysql distinct (37)
- concat_ws (36)
- java continue (36)
- jenkins官网 (37)
- mysql 子查询 (37)
- python元组 (33)
- mybatis 分页 (35)
- vba split (37)
- redis watch (34)
- python list sort (37)
- nvarchar2 (34)
- mysql not null (36)
- hmset (35)
- python telnet (35)
- python readlines() 方法 (36)
- munmap (35)
- docker network create (35)
- redis 集合 (37)
- python sftp (37)
- setpriority (34)
- c语言 switch (34)
- git commit (34)