Python的字符串操作
字符串连接
用+
1
| print ('hello' + 'world')
|
直接连接
1
| print ('hello' ' world')
|
标准输出的重定向
1 2 3 4 5 6 7 8 9
| from io import StringIO import sys old_stdout = sys.stdout result = StringIO() sys.stdout = result print('hello','world') sys.stdout = old_stdout result_str = result.getvalue() print(result_str)
|
格式化输出
1
| s = '<%s> <%s>' % ('hello','world')
|
使用join函数
1 2
| s = " ".join(['hello','world']) print(s)
|
处无为之事,行不言之教;作而弗始,生而弗有,为而弗恃,功成不居!
微信支付
支付宝