有变量name = "aleX leNb " 完成如下操作:
name = "aleX leNb "
移除 name 变量对应的值两边的空格,并输出处理结果
print(name.strip())
判断 name 变量是否以 "al" 开头,并输出结果(用切片)
if name[0:2:1] in 'al':
print(name[0:2:1])
判断name变量是否以"Nb"结尾,并输出结果(用切片)
print(name[-3::])
将 name 变量对应的值中的 所有的"l" 替换为 "p",并输出结果
print(name)
text = name.replace('l','p')
print(text)
将name变量对应的值中的第一个"l"替换成"p",并输出结果
print(name)
text = name.replace('l','p',1)
print(text)
将 name 变量对应的值根据 所有的"l" 分割,并输出结果
print(name.split('l'))
将name变量对应的值根据第一个"l"分割,并输出结果
text = name.split('l', 1)
print(text)
将 name 变量对应的值变大写,并输出结果
print(name.upper())
将 name 变量对应的值变小写,并输出结果
print(name.lower())
请输出 name 变量对应的值的第 2 个字符?
print(name[2])
请输出 name 变量对应的值的前 3 个字符?
print(name[:3])
请输出 name 变量对应的值的后 2 个字符?
print(name[-3:])
有字符串s = "123a4b5c"
s = "123a4b5c"
通过对s切片形成新的字符串 "123"
print(s[:3])
通过对s切片形成新的字符串 "a4b"
print(s[3:6])
通过对s切片形成字符串s5,s5 = "c"
print(s[-1])
通过对s切片形成字符串s6,s6 = "ba2"
print(s[-3::-2])
使用while循环字符串 s="asdfer" 中每个元素。
"""s = "asdfer"
index_len = len(s)
index = 0
while True:
print(s[index])
if index == index_len - 1:
break
index += 1"""
使用while循环对s="321"进行循环,打印的内容依次是:"倒计时3秒","倒计时2秒","倒计时1秒","出发!"。
"""s="321"
index_len = len(s)
index = 0
while True:
print(f"倒计时秒{s[index]}")
if index == index_len - 1:
print("出发!")
break
index += 1"""
实现一个整数加法计算器(两个数相加):
如:content = input("请输入内容:") 用户输入:5+9或5+ 9或5 + 9(含空白),然后进行分割转换最终进行整数的计算得到结果。
content = " 5+9 "
"""content = input("请输入需要计算的值,输入格式为:5+9 或 5+ 9 或 5 + 9 ")
new_content = content.strip().split("+")
print(int(new_content[0]) + int(new_content[1]))"""
计算用户输入的内容中有几个 h 字符?
如:content = input("请输入内容:") # 如fhdal234slfh98769fjdla
content = "fhdal234slfh98769fjdla"
"""content = input("请输入内容:")
index_len = len(content)
index = 0
count = 0
while True:
if content[index] == "h":
count += 1
if index == index_len - 1:
break
index += 1
print(count)"""
计算用户输入的内容中有几个 h 或 H 字符?
如:content = input("请输入内容:") # 如fhdal234slfH9H769fjdla
"""content = input("请输入内容:")
index_len = len(content)
index = 0
count = 0
while True:
if content[index] == "h" or content[index] == 'H':
count += 1
if index == index_len - 1:
break
index += 1
print(count)"""
使用while循环分别正向和反向对字符串 message = "伤情最是晚凉天,憔悴厮人不堪言。" 进行打印。
"""message = "伤情最是晚凉天,憔悴厮人不堪言。"
index_len = len(message)
index = 0
while True:
print(message[index_len - 1], end='')
if index == index_len - 1:
break
index_len -= 1"""
获取用户输入的内容中 前4个字符中 有几个 A ?
如:content = input("请输入内容:") # 如fAdal234slfH9H769fjdla
"""content = input("请输入内容:")
index_len = len(content)
index = 0
count = 0
while True:
if content[index] == "A" :
count += 1
if index == index_len - 1:
break
index += 1
print(count)"""
获取用户输入的内容,并计算前四位"l"出现几次,并输出结果。
"""content = input("请输入内容:")
index_len = len(content)
index = 0
count = 0
while True:
if content[index] == "l" :
count += 1
if index == index_len - 1:
break
index += 1
print(count)"""
获取用户两次输入的内容,并将所有的数据获取并进行相加,如:
"""
要求:
将num1中的的所有数字找到并拼接起来:1232312
将num1中的的所有数字找到并拼接起来:1218323
然后将两个数字进行相加。
num1 = input("请输入:") # asdfd123sf2312
num2 = input("请输入:") # a12dfd183sf23
"""
num1 = 'asdfd123sf2312'
num2 = 'a12dfd183sf23'
index_len1 = len(num1)
index_len2 = len(num2)
index1 = 0
index2 = 0
numm11 = ''
numm22 = ''
while True:
if num1[index1].isdigit():
numm11 = numm11 + str(num1[index1])
if index1 == index_len1 -1:
break
index1 +=1
print(numm11)
while True:
if num2[index2].isdigit():
numm22 = numm22 + str(num2[index2])
if index2 == index_len2 -1:
break
index2 +=1
print(numm22)
count = int(numm11) + int(numm22)
print(count)