Python中的模块

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python中的模块相关的知识,希望对你有一定的参考价值。

参考技术A import os

print(os.name)  # 操作系统名称  Windows nt 非Windows posix

print(os.sep)  # 路径分隔符    Windows \    其他 /

import os

# 使用 os.path 方法获取文件的路径

# 001.获取文件的绝对路径 使用abspath方法

print(os.path.abspath("04_模块导入.py"))

#  运行结果:D:\mypycharm\pythonProject\千峰培训\day11module1\04_模块导入.py

# 002判断是否是文件 False

print(os.path.isdir("")) 

# 运行结果: False

# 003.判断文件是否存在如果存在返回True 否则返回False

print(os.path.exists("mydir"))

# True

import os

files = "2020.12.22.test.py"

print(files.rpartition(".")[-1]) 

print(os.path.splitext(files)[-1])

# 运行结果:

# 获取文件的后缀名  py

# 获取文件的后缀名 .py

import os

print(os.getcwd())

# 运行结果:

# D:\mypycharm\pythonProject\培训\day11module1

import os

os.chdir("mydir")

print(os.getcwd())

# D:\mypycharm\pythonProject\培训\day11module1\mydir

import os

os.rename("66.py","../99.py")

import os

# 001.删除文件

os.remove("../99.py")

# 002.删除空文件夹

os.rmdir("../mydir")

os.removedirs("mydir")

import os

os.mkdir("mydir")

import os

# 001.列出指定目录里所有的子目录和文件

print(os.listdir("D:\mypycharm\pythonProject"))

# 002.默认当前目录里的 子目录和文件

print(os.listdir())

# 运行结果:

# ['.idea', '千峰培训', '学校实习']

# ['03_module.py', '04_模块导入.py', '05_os.py', '2020.12.22.tests.py', 'a01_module1.py', 'a02_module2.py', '__pycache__']

import os

print(os.environ)

print(os.environ["PATH"])

import os

import string  # 字符串模块

import random

files = "test.jpg"

#  01.获取文件的后缀

surffix = os.path.splitext(files)[-1]

# print(surffix)  # .jpg

# 02.生成所有大小写字母的列表

res = list(string.ascii_letters)

# print(string.ascii_letters)

# 运行结果;abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ

#  03.将0-9添加到res中

for i in range(0, 10):

    res.append(str(i))

# 04.随机生成文件名:

mystr = "".join(random.sample(res, 10))  #  sample随机生成10个字符

# print(mystr)

# bJpED6dj2Y

# 05.将文件名和后缀拼接

print(mystr+surffix)

import sys

print(sys.path)

res = sys.stdin

print(res)

import math

# print(math.pi)  # 3.141592653589793

print(math.factorial(5))  # 120

# 幂运算 第一个参数是底数 第二个参数是幂

print(math.pow(2, 3))  # 8.0

# 向上取整和向下取整

print(math.floor(15.999))  # 15

print(math.ceil(15.001))  # 16

# 四舍五入

print(round(123.51, 1))  # 123.5

# 三角函数

print(math.sin(math.pi / 6))  # sin(pi/6) 0.49999999999999994

print(math.cos(math.pi / 3))  # sin(pi/3) 0.5000000000000001

print(math.tan(math.pi / 4))  # sin(pi/6) 0.9999999999999999

# 开方

a = 9

b = 16

print(math.sqrt(a+b))  # 5.0

# 以e为底的指数函数

print(math.exp(a))

#  8103.083927575384

import random

# 01.random()  随机生成[0,1)之间的数  前闭后开

print(random.random())  # 生成[0,1)之间的小数

# 02.randint() 生成范围内的随机整数        全闭

print(random.randint(10, 20))  # 生成[10,20]之间的整数

# 03.randrange() 生成范围内的随机整数      前闭后开

print(random.randrange(10, 20))  # 生成[10,20)之间的整数

# 04.choice  参数是列表  随机从列表中取一个  取一次

print(random.choice([1, 2, 3, 4, 5, 6, 77, 8, 9]))

# 05.sample 的第一个参数 必须是一个可迭代对象

#          第二个参数代表着从可迭代对象从随机选取几个,选取的对象不能重复

print("".join(random.sample(["a", "b", "c", "d"], 3)))

import datetime as dt # 引入datetime 模块并将其命别名为dt

import time

import calendar  # 引入日历模块

# 01.datetime模块

# 001.获取当前时间的具体信息

print(dt.datetime.now()) 

# 运行结果:

# 2020-12-26 15:36:36.408129

# 年    月 日  时 分 秒  毫秒

# 002.创建日期

print(dt.date(2020,1,1)) 

# 年月日  2020-01-01

# 003.创建时间

print(dt.time(16,30,30))

# 时 分 秒:  16:30:30

# 004.timedelta() 括号中的默认参数是天

print(dt.datetime.now()+dt.timedelta(3))  # 2020-12-25 15:50:15.811738

print(dt.datetime.now()+dt.timedelta(hours=3))  # 2020-12-22 18:51:41.723093

print(dt.datetime.now()+dt.timedelta(minutes=10))  # 2020-12-22 16:01:41.723093

# 02.time

# 001.当前时间的时间戳

# 时间戳是指从1970—01-01 0:0:0到现在的秒数 utc时间 也叫格林尼治时间 

print(time.time())

# 002.按照指定格式输出时间

# print(time.strftime("%Y-%m-%d %H:%M:%S"))  # 2020-12-22 15:57:49

# 时间格式:

# %Y  Year with century as a decimal number.

# %m  Month as a decimal number [01,12].

# %d  Day of the month as a decimal number [01,31].

# %H  Hour (24-hour clock) as a decimal number [00,23].

# %M  Minute as a decimal number [00,59].

# %S  Second as a decimal number [00,61].

# %z  Time zone offset from UTC.

# %a  Locale's abbreviated weekday name.

# %A  Locale's full weekday name.

# %b  Locale's abbreviated month name.

# %B  Locale's full month name.

# %c  Locale's appropriate date and time representation.

# %I  Hour (12-hour clock) as a decimal number [01,12].

# %p  Locale's equivalent of either AM or PM.

# 003.ctime 和 asctime 时间格式  输出的时间格式一样,

# print(time.asctime())  # Tue Dec 22 15:57:49 2020

# print(time.ctime())  # Tue Dec 22 15:58:35 2020

# 004.sleep()  时间休眠

print("我负责浪")

print(time.sleep(3))

print("你负责漫")

# 005.calender 生成日历

res = calendar.calendar(2021)  # 生成2021年的日历

print(res)

# 006.判断是否为闰年

print(calendar.isleap(2020))  # True

# 007.从1988年 到 2020年有多少个闰年

print(calendar.leapdays(1988, 2020))  # 8

如何导入python中的模块

参考技术A 定义模块,只要使用文本编辑器,把一些python代码输入到文本中,然后以.py为后缀名进行保存,任何此类文件都会被认为是python模块。
比如说,下面的代码输入到一个文件中,就可以看作是一个模块:
def
printme(var):
print
varif
__name__
==
'__main__':
printme(1)
假设说输入到a.py中,那么import
a就可以把这个模块导入。
然后可执行a.printme(3),屏幕即可打印出3:
>>>
a.printme(3)3>>>
一个模块顶层定义的变量,会自动变成模块的属性。例如:
data=[1,2,3]def
printme(var):
print
varif
__name__
==
'__main__':
printme(1)
data变量就是模块的一个属性。其实printme也是一个属性,只不过是一个函数罢了。
引入模块示例如下:(假定此时data=[1,2,3]未定义)
>>>
import
a>>>
a.data
Traceback
(most
recent
call
last):
File
"<pyshell#1>",
line
1,
in
<module>
a.dataAttributeError:
'module'
object
has
no
attribute
'data'>>>
reload(a)<module
'a'
from
'C:/py\a.pyc'>>>>
a.data
Traceback
(most
recent
call
last):
File
"<pyshell#3>",
line
1,
in
<module>
a.dataAttributeError:
'module'
object
has
no
attribute
'data'>>>
从上述提示可以看出data属性未定义,此时再在a.py文件中定义data=[1,2,3],重新加载a模块,并输出data属性:
>>>
reload(a)<module
'a'
from
'C:/py\a.py'>>>>
a.data[1,
2,
3]>>>
这里的reload函数可以重新加载一个模块。如果在模块代码中更改了,那么需要重新加载。
上面a.data,就是访问模块中的属性。
上面的例子是导入一个文件作为一个模块。
其实python的模块导入还有更丰富的内容。
除了模块名之外,python也可以导入指定目录路径。python代码的目录就称为包。因此,这类导入就称为包导入。事实上,包导入是把计算机上的目录变成python的一个命名空间。而属性就是目录中包含的子目录或者是模块文件。
看下面例子:
在我的桌面上有一个aa文件夹,里面有bb文件夹,bb里面有a.py这个文件。
那么在aa和bb文件夹中分别放置一个__init__.py,之后,在命令行中import
aa.bb.a,就可以导入模块a了。

以上是关于Python中的模块的主要内容,如果未能解决你的问题,请参考以下文章

如何导入python中的模块

python中的time模块

python如何在一个模块中调用另一个模块中的变量

python中的模块

Python中的random模块

Python基础06_Python中的模块