Python学习Day14-2 关于第三方库

#Python第三方库的使用
#Python全球社区:https://pypi.org/,用于查找、安装、发布Python包----搜索先关库,找到合适的库阅读其功能
#https://python123.io/慕课嵩天老师提供的学习社区
'''需要联网,pip常用命令,搬运自博客园——
Commands:
  install                     Install packages.
  download                    Download packages.#下载但不安装
  uninstall                   Uninstall packages.
  freeze                      Output installed packages in requirements format.
  list                        List installed packages.
  show                        Show information about installed packages.
  check                       Verify installed packages have compatible dependencies.
  search                      Search PyPI for packages.#搜索相关的库名
  wheel                       Build wheels from your requirements.
  hash                        Compute hashes of package archives.
  completion                  A helper command used for command completion.
  help                        Show help for commands.
General Options:
  -h, --help                  Show help.
  --isolated                  Run pip in an isolated mode, ignoring
                              environment variables and user configuration.
  -v, --verbose               Give more output. Option is additive, and can be
                              used up to 3 times.
  -V, --version               Show version and exit.
  -q, --quiet                 Give less output. Option is additive, and can be
                              used up to 3 times (corresponding to WARNING,
                              ERROR, and CRITICAL logging levels).
  --log                 Path to a verbose appending log.
  --proxy              Specify a proxy in the form
                              [user:passwd@]proxy.server:port.
  --retries          Maximum number of retries each connection should
                              attempt (default 5 times).
  --timeout              Set the socket timeout (default 15 seconds).
  --exists-action     Default action when a path already exists:
                              (s)witch, (i)gnore, (w)ipe, (b)ackup, (a)bort.
  --trusted-host    Mark this host as trusted, even though it does
                              not have valid or any HTTPS.
  --cert                Path to alternate CA bundle.
  --client-cert         Path to SSL client certificate, a single file
                              containing the private key and the certificate
                              in PEM format.
  --cache-dir            Store the cache data in .
  --no-cache-dir              Disable the cache.
  --disable-pip-version-check
                              Don't periodically check PyPI to determine
                              whether a new version of pip is available for
                              download. Implied with --no-index.
'''
'''集成安装方法:Anaconda---
    支持近800个第三方库
    包含多个主流工具
    适合数据计算领域的发展
'''
'''
    文件安装方法:
    某些第三方库,需要下载后进行编译再运行安装运行
'''
#OS库——————提供的通用的、基本的操作系统交互功能
#路径操作:os.path子库,处理文件的路径及信息
#进程管理
#环境参数:获得系统硬件信息等
import os.path
import os
'''

s=os.path.abspath("Threekingdoms.txt")#返回文件的绝对路径
print(s)
t=os.path.normpath("F:/picture/54a9ec36b5b34.jpg")#归一化路径,输出的路径格式统一采用双//,参数为路径
print(t)
u=os.path.relpath("E:\教师资格证面试大纲.doc")#返回当前程序与文件的相对路径,参数为路径,只能仅限于同一盘符???
print(u)
os.path.dirname("E:\OpenCVTests\Threekingdoms.txt")#返回path中的目录名称
os.path.basename("E:\OpenCVTests\Threekingdoms.txt")#返回path中最后的文件名称
os.path.join("E:/","OpenCVTests\Threekingdoms.txt")#组合两个path
os.path.exists()#判断路径是否存在
os.path.isfile()#判断是否是文件
os.path.isdir()#判断是否是目录
os.path.getatime()#返回最近一次访问该文件的时间acces
os.path.getmtime()#返回最近一次修改该文件的时间modify
os.path.gettime()#返回最近一次创建该文件的时create
os.path.getsize()#返回对应文件的大小
'''
#进程管理
#os.system()#参数为应用程序.exe的路径,如果使用一个软件去打开另一个文件,则用空格连接两个路径即可操作,并且返回一个0,代表操成功
#os库环境参数
#os.chdir()#修改当前程序操作的路径
#os.getcwd()#返回当前程序的路径
#os.getlogin()#获得当前系统的登录者得名称
a=os.cpu_count()#获得当前CPU的数量
print(a)
b=os.urandom(n)#获得n个字节长的随机字符串,通常应用于加解密运算,不能表示的,则会通过十六进制表示
print(b)

你可能感兴趣的:(Python学习)