博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python 重要模块
阅读量:6457 次
发布时间:2019-06-23

本文共 1337 字,大约阅读时间需要 4 分钟。

1,使用字典的特殊字符串替换,基于字典的字符串格式化

圆括号中的信息是键名,值将从字典中得到并替换为字符串,需在圆括号后面指定插入的数据类型;

person[数字序 for tulpper() list[] or keyName for dict{}]

2,string

 Ruiy tips

python模块

使用模块为Python添加功能,通过模块同操作系统及其文件进行交互.

Options and arguments corresponding environment variables;

program passed in as string (terminates option list)

debug output from parser (PYTHONDEBUG = x)
ignore environment variables

3,使用一个以上的进程fork,exec(执行系统调用)

os.fork()

告诉计算机复制关于当前运行的程序的一切信息岛一个新创建的单独程序,复制的程序与原来的程序几乎是完全相同的!

import ospid = os.fork()if pid == 0:# This is the child  print("this is the child")else:print("the child is pid %d" % pid)

os.wait()使Python parent id什么都不做;

import os

pid = os.foek()
#fork and exec together
print("second test")
if pid == 0:#This is the child
    print("this is the child")
    print("I'm going to exec another program now")
    os.execl('/bin/cat','cat','/etc/moth')
else:
    print("the child is pid %d" % pid)
os.wait()

4,使用python 通配符筛选有用的python模块私有及共有模块对象

import glob

如果只需要一个新命令的最基本的调用,最简单的方式是使用os.system函数

上面简单说了下使用一个以上的进程(进程分叉),下面来讲讲线程(在相同的进程中完成多个工作)

5,创建模块

模块提供了一种在应用程序之间共享Python代码的便捷方式.

模块中定义函数和类;

导入Python内置模块 or自定义的模块 import moduleName;

仅仅导入模块中的类或是函数from module import item;

6,如果模块被修改,使用imp.reload()函数重新加载模块新定义

import module;

import imp;

imp.reload(module);

6,修改模块搜索路径

 

posted on
2014-10-02 10:36 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/ruiy/p/4003898.html

你可能感兴趣的文章
SQL Serever学习7——数据表2
查看>>
(转)Mac 下设置android NDK的环境
查看>>
Struts2和Spring MVC的区别
查看>>
理解Javascript参数中的arguments对象
查看>>
p2:千行代码入门python
查看>>
bzoj1106[POI2007]立方体大作战tet*
查看>>
spring boot configuration annotation processor not found in classpath问题解决
查看>>
【转】正则基础之——神奇的转义
查看>>
团队项目测试报告与用户反馈
查看>>
对软件工程课程的期望
查看>>
Mysql中文字符串提取datetime
查看>>
CentOS访问Windows共享文件夹的方法
查看>>
IOS 与ANDROID框架及应用开发模式对比一
查看>>
由中序遍历和后序遍历求前序遍历
查看>>
JQUERY Uploadify 3.1 C#使用案例
查看>>
coursera 北京大学 程序设计与算法 专项课程 完美覆盖
查看>>
firewall 端口转发
查看>>
wndows make images
查看>>
FS系统开发设计(思维导图)
查看>>
我学习参考的网址
查看>>