提交 873a41a6 编写于 作者: 秦英杰

fix:列表整理

上级 aad4d3a7
ddd = '散发斯蒂芬'
''
""
sql = """
select * from table
"""
f"是打发斯蒂芬{ddd}"
type(sql)
my_str = "itheima and itcast"
my_str = "itheima and itcast"
# 通过下标索引取值
value = my_str[2]
value2 = my_str[-16]
# value3 = my_str[-160]
print(f"从字符串{my_str}取下标为2的元素,。值是:{value},取下标为-16的元素。值是:{value2}")
my_str = "itheima and itcast"
# 字符串对象不支持赋值
# my_str[2] = "H"
# index方法
value = my_str.index("and")
print(f"在字符串{my_str}中查找and,其起始下标是:{value}")
\ No newline at end of file
my_str = "itheima and itcast"
# new_my_str = my_str.replace("it", "程序")
new_my_str = my_str.replace("it", "程序", 2)
print(f"将字符串{my_str},进行替换后得到:{new_my_str}")
my_str = "hello python itheima itcast"
my_str_list = my_str.split("it")
print("-" * 100)
print(f"将字符串{my_str}进行split切分后得到:{my_str_list}, 类型是:{type(my_str_list)}")
"""
演示以数据容器的角色,学习字符串的相关操作
"""
ddd = '散发斯蒂芬'
''
""
sql = """
select * from table
"""
f"是打发斯蒂芬{ddd}"
type(sql)
my_str = "itheima and itcast"
# 通过下标索引取值
value = my_str[2]
value2 = my_str[-16]
# value3 = my_str[-160]
print(f"从字符串{my_str}取下标为2的元素,。值是:{value},取下标为-16的元素。值是:{value2}")
# 字符串对象不支持赋值
# my_str[2] = "H"
# index方法
value = my_str.index("and")
print(f"在字符串{my_str}中查找and,其起始下标是:{value}")
# replace方法
print("++" * 100)
# new_my_str = my_str.replace("it", "程序")
new_my_str = my_str.replace("it", "程序", 2)
print(f"将字符串{my_str},进行替换后得到:{new_my_str}")
# split方法
my_str = "hello python itheima itcast"
my_str_list = my_str.split("it")
print("-" * 100)
print(f"将字符串{my_str}进行split切分后得到:{my_str_list}, 类型是:{type(my_str_list)}")
# strip方法
my_str = " itheima and itcast "
new_my_str = my_str.strip() # 不传入参数,去除首尾空格
print(f"字符串{my_str}被strip后,结果:{new_my_str}")
# my_str.rstrip()
# my_str.lstrip()
# 回文数 123456654321
my_str = "12itheima and itcast12"
# new_my_str = my_str.strip("12")
new_my_str = my_str.strip("12")
print("-" * 100)
print(f"字符串{my_str}被strip('12')后,结果:{new_my_str}")
# 统计字符串中某字符串的出现次数, count
my_str = "itheima and itcast"
count = my_str.count("it")
print(f"字符串{my_str}中it出现的次数是:{count}")
# 统计字符串的长度, len()
num = len(my_str)
print(f"字符串{my_str}的长度是:{num}")
my_str = "12itheima and itcast21"
new_my_str = my_str.strip("231")
print(f"字符串{my_str}被strip('12')后,结果:{new_my_str}")
url = ' http://www.baidu.com '
print(url.strip())
my_str = "hello python itheima itcast"
new_my_str = my_str.strip() # 不传入参数,去除首尾空格
print(f"字符串{my_str}被strip后,结果:{new_my_str}")
# my_str.rstrip()
# my_str.lstrip()
# 回文数 123456654321
my_str = "12itheima and itcast12"
# new_my_str = my_str.strip("12")
new_my_str = my_str.strip("12")
print("-" * 100)
print(f"字符串{my_str}被strip('12')后,结果:{new_my_str}")
"""
字符串课后练习演示
"itheima itcast boxuegu"
"""
[1, 2, 3, 4, 5, 6, 7] # 列表
my_str = "itheima itcast boxuegu"
# 统计字符串内有多少个"it"字符
num = my_str.count("it")
print(f"字符串{my_str}中有{num}个it字符")
# 将字符串内的空格,全部替换为字符:"|"
new_my_str = my_str.replace(" ", "|")
print(f"字符串{my_str}被替换空格后,结果是:{new_my_str}")
# 并按照"|"进行字符串分割,得到列表
my_str_list = new_my_str.split("|")
print(f"字符串{new_my_str}按照|分割后结果是:{my_str_list}")
"""
演示以数据容器的角色,学习字符串的相关操作
"""
my_str = "itheima and itcast"
count = my_str.count("it")
print(f"字符串{my_str}中it出现的次数是:{count}")
# 统计字符串的长度, len()
num = len(my_str)
print(f"字符串{my_str}的长度是:{num}")
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册