master
Andy Ron 2016-12-15 23:31:55 +08:00
parent 7a71693ae6
commit 4e4314bf74
2 changed files with 29 additions and 3 deletions

View File

@ -136,7 +136,7 @@
S = u'spam' # Python2.6中的Unicode字符串
s1+s2, s1*3, s[i], s[i:j], len(s) # 字符串操作
'a %s parrot' % 'kind' # 字符串格式化表达式
'a {0} parrot'.format('kind') # 字符串格式化方法
'a {1} {0} parrot'.format('kind', 'red')# 字符串格式化方法
for x in s: print(x) # 字符串迭代,成员关系
[x*2 for x in s] # 字符串列表解析
','.join(['a', 'b', 'c']) # 字符串输出结果a,b,c
@ -153,7 +153,7 @@
str1.count('t') # 查找字符串出现的次数
#上面所有方法都可用index代替不同的是使用index查找不到会抛异常而find返回-1
str1.replace('old','new') # 替换函数替换old为new参数中可以指定maxReplaceTimes即替换指定次数的old为new
str1.strip();
str1.strip(); # 默认删除空白符
str1.strip('d'); # 删除str1字符串中开头、结尾处位于 d 删除序列的字符
str1.lstrip();
str1.lstrip('d'); # 删除str1字符串中开头处位于 d 删除序列的字符
@ -171,7 +171,7 @@
#-- 索引和分片:
S[0], S[len(S)1], S[-1] # 索引
S[1:3], S[1:], S[:-1], S[1:10:2] # 分片,第三个参数指定步长
S[1:3], S[1:], S[:-1], S[1:10:2] # 分片,第三个参数指定步长,如`S[1:10:2]`是从1位到10位没隔2位获取一个字符。
#-- 字符串转换工具:
int('42'), str(42) # 返回(42, '42')

26
python_sys.py 100644
View File

@ -0,0 +1,26 @@
# _*_ coding: utf-8 _*_
import sys
"""sys模块详细"""
sys.argv # 获得脚本的参数
sys.path # 查找扩展模块(Python源模块, 编译模块,或者二进制扩展)目录
sys.builtin_module_names # 查找内建模块
sys.modules # 查找已导入的模块
sys.modules.keys()
sys.platform # 返回当前平台 出现如: "win32" "linux2" "darwin"等
sys.stdout # stdout 是一个类文件对象;调用它的 write 函数可以打印出你给定的任何字符串 stdout 和 stderr 都是类文件对象,但是它们都是只写的。
它们都没有 read 方法只有 write 方法
sys.stdout.write("hello")
sys.stderr
sys.stdin
sys.exit(1)
__import__("module_name") # 查找模块输出模块路径