学习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成神之路。
共有 0 条评论