dk= "duck"
print(dk.title()) 首字母大写,其它小写
print(dk.upper())所有的大写
print(dk.lower())所有都小写
firstname= "duck"
lastname= "man"
full= firstname + "_" + lastname
print("hello,"+"99999"+full+"000000"+"?")
![](https://img.haomeiwen.com/i8811310/0d00673a7779921f.png)
python中用加号合并字符串
dk= "duck"
print(dk.title()) 首字母大写,其它小写
print(dk.upper())所有的大写
print(dk.lower())所有都小写
firstname= "duck"
lastname= "man"
full= firstname + "_" + lastname
print("hello,"+"99999"+full+"000000"+"?")
python中用加号合并字符串
本文标题:python
本文链接:https://www.haomeiwen.com/subject/kbcfsftx.html
网友评论