11 2017 档案

摘要:port – Device name or None. baudrate (int) – Baud rate such as 9600 or 115200 etc. bytesize – Number of data bits. Possible values: FIVEBITS, SIXBITS, 阅读全文
posted @ 2017-11-27 14:16 njuptlwh 阅读(2145) 评论(0) 推荐(0) 编辑
摘要:转义字符描述 \(在行尾时) 续行符 \\ 反斜杠符号 \' 单引号 \" 双引号 \a 响铃 \b 退格(Backspace) \e 转义 \000 空 \n 换行 \v 纵向制表符 \t 横向制表符 \r 回车 \f 换页 \oyy 八进制数,yy代表的字符,例如:\o12代表换行 \xyy 十六进制数,yy代表的字符,例如:\... 阅读全文
posted @ 2017-11-13 15:52 njuptlwh 阅读(102) 评论(0) 推荐(0) 编辑
摘要:Python ljust()方法 --rjust())#返回一个原字符串左对齐,并使用空格填充至指定长度的新字符串。如果指定的长度小于原字符串的长度则返回原字符串 str.ljust(width[, fillchar]) >>> ' hello world'.ljust(20) ' hello wo 阅读全文
posted @ 2017-11-13 10:07 njuptlwh 阅读(904) 评论(0) 推荐(0) 编辑
摘要:1. Python isalnum()方法 #检测字符串是否由字母和数字组成 如果 string 至少有一个字符并且所有字符都是字母或数字则返回 True,否则返回 False >>> 'hello'.isalnum() True >>> 'hello123'.isalnum() True >>> 阅读全文
posted @ 2017-11-09 16:46 njuptlwh 阅读(177) 评论(0) 推荐(0) 编辑
摘要:1. str.capitalize() # 将字符串的第一个字母变成大写,其他字母变小写。对于 8 位字节编码需要根据本地环境 >>> 'hello'.capitalize() 'Hello' >>> 'hEllo'.capitalize() 'Hello View Code 2. center(w 阅读全文
posted @ 2017-11-08 10:07 njuptlwh 阅读(317) 评论(0) 推荐(0) 编辑