学习Python第四天

字符串操作
# 1、切分字符串
language = "Python and Java and C++ and Golang and Scala"
# split 切割字符串 生成一个列表: 暂时理解为一个容器 有序序列
result1 = language.split("and")
print(result1)

# 2、连接序列 生成字符串 跟split 是相反的操作
lang = ["English", "Chinese", "Jananese"]
# 通过 - 连接上面的语言 形成字符串
result2 = "-".join(lang)
print(result2, type(result2))

# 3、删除字符串两边的空格 strip
class_name = " Big Data "
print(len(class_name))
# 删除两边空格
class_name_new = class_name.strip()
print(class_name_new, len(class_name_new))

# 4、判断一个字符

学习Python第四天最先出现在Python成神之路

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

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