[TOC]
004
pythonanywhere网站上的免费用户无法发邮件
https://help.pythonanywhere.com/pages/SMTPForFreeUsers/
003
字符串中的{!s}
{!r}
{!a}
str.format()
方法和Formatter
类使用相同的格式化字符串语法
Format strings contain "replacement fields" surrounded by curly braces {}.
replacement_field ::= "{" [field_name] ["!" conversion] [":" format_spec] "}"
conversion ::= "r" | "s" | "a"
Three conversion flags are currently supported:
'!s'
which calls str()
on the value
'!r'
which calls repr()
'!a'
which calls ascii()
.
v = 'zhoujie'
s = 'hello, {!s}'.format(v)
r = 'hello, {!r}'.format(v)
a = 'hello, {!a}'.format(v)
print(s) ''' 输出hello, zhoujie '''
print(r) ''' 输出hello, 'zhoujie' '''
print(a) ''' 输出hello, 'zhoujie' '''
002
__doc__
比如有module.py:
'''This is the module docstring.'''
class MyClass():
'''This is the class docstring.'''
def myFun():
'''This is the function docstring.'''
print(MyClass.__doc__) #输出:This is the class docstring.
print(myFun.__doc__) #输出:This is the function docstring.
#module.__doc__也可以,输出:This is the module docstring.
每个对象都会有一个__doc__
属性。该属性用于描述该对象的作用, 相当于文档
001
设置VSCode的Code Runner插件支持Python3来运行代码
Code Runner插件默认用python来运行代码:
"code-runner.executorMap": {
"python": "python",
},
在我的Mac机器上, 安装了python2.7和python3.6:
➜ ~ python
Python 2.7.10 (default, Oct 6 2017, 22:29:07)
>>>
➜ ~ python3
Python 3.6.1 (v3.6.1:69c0db5050, Mar 21 2017, 01:21:04)
>>>
想修改为默认用python3来运行,可做如下修改:
"code-runner.executorMap": {
"python": "python3",
},
修改默认使用Pthon3的原因之一: 对于代码文件第一行没指明coding编码方式的不规范写法,Python 2.7.10会报错,而Python3则正常运行:
000
Unicode
Unicode 标准把字符的标识和具体的字节表述进行了如下的明确区分。
字符的标识,即码位,是 0~1 114 111 的数字(十进制),在 Unicode 标准中以 4~6 个十六进制数字表示,而且加前缀“U+”。
例如,字母 A 的码位是 U+0041,欧元符号的码位是 U+20AC,高音谱号的码位是 U+1D11E。
字符的具体表述取决于所用的编码。编码是在码位和字节序列之间转换时使用的算法。
A(U+0041)
在 UTF-8 编码中, 编码成单个字节 \x41,
在 UTF-16LE 编码中, 编码成两个字节 \x41\x00。
欧元符号(U+20AC)
在 UTF-8 编码中, 编码成三个字节——\xe2\x82\xac,
在 UTF-16LE 编码中, 编码成两个字节:\xac\x20
把码位转换成字节序列的过程是编码
把字节序列转换成码位的过程是解码
编码: 码位 ---> 字节序列
解码: 字节序列 ---> 码位
包、模块
包: python源文件 + __init__.py
模块: python源文件
我们在导入一个包时,实际上导入了它的__init__.py文件
安装包、发布包
# pdb为内置的调试器,调试代码
python3 -m pdb script.py
- 安装特定版本
pip3 install package-name==version
- 从来自中国的源安装包
pip3 install wxpy -i "https://pypi.doubanio.com/simple/"
- 列表有新版本的包
pip3 list --outdate
- 升级已安装的包到最新版本
pip3 install --upgrade package-name
pip3 install -U package-name
PyPI : Python Package Index
问:我怎么知道Python模块放在计算机的什么地方?
答: import sys; sys.path可以看到一个位置列表,Python解释器就在这些位置上搜索模块
准备发布:
1.为模块创建一个文件夹
2.在文件夹中新建一个名为setup.py文件,这个文件包含发布的元数据
3.python3 setup.py sdist
4.sudo python3 setup.py install
其它
在Python中能够表示无穷大[应用:Dijkstra算法]
infinity = float("inf")
Python2中,任何东西(不同类型之间)都可以比较,而Python3只有同类型数据可以比较。
#使用下面的方法可以同时得到余数和商
>>> divmod(9,5)
(1, 4)
#想知道一个对象(例如一个变量或者一个字面值)的类型,可以使用语句:
>>> type(58)
#除法
#/:浮点数除法
>>> 7/5
1.4
#//:整数除法
>>> 7//5
1
#到了Python 3, long类型已不复存在,而int类型变为可以存储任意大小的整数,甚至超过 64位
>>> 10**100
10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
#使用int()函数将其他的Python数据类型转换为整型
>>> int(True)
1
#如果你试图将一个与数字无关的类型转化为整数,会得到一个异常:
>>> int('99 bottles of beer on the wall')
Traceback (most recent call last):
File "", line 1, in
ValueError: invalid literal for int() with base 10: ' 99 bottles of beer on the wall'
#int() 可以接受浮点数或由数字组成的字符串,但无法接受包含小数点或指数的字符串:
>>> int('98.6')
Traceback (most recent call last):
File "", line 1, in
ValueError: invalid literal for int() with base 10: '98.6'
>>> int('1.0e4')
Traceback (most recent call last):
File "", line 1, in
ValueError: invalid literal for int() with base 10: '1.0e4'
#使用str()可以将其他数据类型转换为字符串:
>>> str(1.0e4)
'10000.0'
#使用float()可以将其他数字类型转换为浮点型
>>> float(True)
1.0
#也可以将包含有效浮点数(数字、正负号、小数点、指数及指数的前缀 e )的字符 串转换为真正的浮点型数字:
>>> float('-1.5')
-1.5
>>> float('1.0e4')
10000.0
#Python 字符串是不可变的。你无法对原字符串进行修改,但可以将字符串的一部分复制到新字符串,来达到相同的修改效果
#三元引号在创建短字符串时没有什么特殊用处。 它多用于创建多行字符串
>>> poem = '''There was a Young Lady of Norway,
... Who casually sat in a doorway;
... When the door squeezed her flat,
... She exclaimed, "What of that?"
... This courageous Young Lady of Norway.'''