str

str

例 4.6. str

>>> str(1)

str函数 python str函数作用_bc

'1'
>>> horsemen = ['war', 'pestilence', 'famine']
>>> horsemen
['war', 'pestilence', 'famine']
>>> horsemen.append('Powerbuilder')
>>> str(horsemen)

str函数 python str函数作用_数据类型_02

"['war', 'pestilence', 'famine', 'Powerbuilder']"
>>> str(odbchelper)

str函数 python str函数作用_bc_03

"<module 'odbchelper' from 'c:\\docbook\\dip\\py\\odbchelper.py'>"
>>> str(None)

str函数 python str函数作用_bc_04

'None'

str函数 python str函数作用_bc

对于简单的数据类型比如整型,你可以预料到 str

str函数 python str函数作用_数据类型_02

然而 str

str函数 python str函数作用_bc_03

str

str函数 python str函数作用_bc_04

str 的一个细小但重要的行为是它可以作用于 None,None 是 Python 的 null 值。这个调用返回字符串 'None'。你将会使用这一点来改进你的 info

info 函数的核心是强大的 dir 函数。dir