导语:
本文主要介绍了关于python中str()函数转换字符串的相关知识,包括python len函数,以及string函数这些编程知识,希望对大家有参考作用。
1、方法说明
如果你只想将 Python 对象转换为文字字符串,则 str() 函数将返回到值的人类可读表示。
2、语法
class str(object='')
3、实例
>>> s = 'Hello, world.'
>>> str(s)
'Hello, world.'
>>> repr(s)
"'Hello, world.'"
>>> str(1/7)
'0.14285714285714285'
>>> x = 10 * 3.25
>>> y = 200 * 200
>>> s = 'The value of x is ' + repr(x) + ', and y is ' + repr(y) + '...'
>>> print(s)
The value of x is 32.5, and y is 40000...
>>> # The repr() of a string adds string quotes and backslashes:
... hello = 'hello, world\n'
>>> hellos = repr(hello)
>>> print(hellos)
'hello, world\n'
>>> # The argument to repr() may be any Python object:
... repr((x, y, ('spam', 'eggs')))
"(32.5, 40000, ('spam', 'eggs'))"
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ TIOBE 10月编程语言排行榜,Python位居榜首09/01
- ♥ python有什么好书10/18
- ♥ 学习python是否需要培训09/20
- ♥ python链表的乘法问题01/04
- ♥ python tk.text 不可编辑11/25
- ♥ 为什么 Python 必须在方法定义和调用中显式使用“self”?01/12
内容反馈