pythonstr()函数转换字符串
python中str()函数转换字符串
1、方法说明
如果只是想把Python的对象转换成文字串的话,str()函数是回到人类可读值的表示。
2、语法
classstr(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='Thevalueofxis'+repr(x)+',andyis'+repr(y)+'...'
>>>print(s)
Thevalueofxis32.5,andyis40000...
>>>#Therepr()ofastringaddsstringquotesandbackslashes:
...hello='hello,world\n'
>>>hellos=repr(hello)
>>>print(hellos)
'hello,world\n'
>>>#Theargumenttorepr()maybeanyPythonobject:
...repr((x,y,('spam','eggs')))
"(32.5,40000,('spam','eggs'))"
以上就是python中str()函数转换字符串的方法,希望对大家有所帮助。更多Python学习教程请关注IT培训机构:千锋教育。
猜你喜欢LIKE
相关推荐HOT
更多>>python中open和with open有什么区别?
python中open和withopen有什么区别?本文教程操作环境:windows7系统、Python3.9.1,DELLG3电脑。一、open函数一般是使用open()和close()组合来...详情>>
2023-11-10 23:40:58python中使用_setattr_()
python中使用_setattr_()本文教程操作环境:windows7系统、Python3.9.1,DELLG3电脑。1、setattr函数给对象的属性赋值,若属性不存在,先创建再...详情>>
2023-11-10 22:45:02python中如何使用np.delete()方法?
python中如何使用np.delete()方法?在python列表中,如果我们想要删除一个或者连续几个元素,可以使用del()方法,在numpy数组,如果想要删除元素...详情>>
2023-11-10 21:40:05python中ndarray是什么?
python中ndarray是什么?在使用python的Numpy数组,时,我们总会遇到ndarray,那ndarray是什么呢?ndarray是Numpy中的一个多维数组的数据结构,在...详情>>
2023-11-10 20:08:58热门推荐
python中open和with open有什么区别?
沸python中jsonpath模块有何用法?
热python中使用_setattr_()
热如何使用Python的telnetlib模块?
新python中如何使用np.delete()方法?
python中wordcloud库如何生成词云?
python中ndarray与list转换的方法
python中ndarray是什么?
python套接字的用法
python中如何使用@contextmanage?
Python IDE之Thonny的介绍
python如何安装OpenCV?
python如何实现信息增益和信息增益率
pythonpickle模块的使用注意