Python基础学习day03

'''可变字符串
>>> import io
>>> s ='hello,sxt'
>>> sio = io.StringIO(s)
>>> sio
<_io.StringIO object at 0x000002814C5AA040>
>>> sio.getvalue()
'hello,sxt'
>>> sio.seek(7)
7
>>> sio.write('g')
1
>>> sio.getvalue()
'hello,sgt'
>>>
'''
# 基本运算符

 >>> a = 4 >>> 3

Python基础学习day03最先出现在Python成神之路

版权声明:
作者:Alex
链接:https://www.techfm.club/p/8354.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>