- 输入一个字符串,打印所有奇数位上的字符(下标是1,3,5,7…位上的字符)
例如: 输入'abcd1234 ' 输出'bd24'
str1 = input('请输入字符串:')
for index in range(1, len(str1), 2):
print(str1[index], end='')
- 输入用户名,判断用户名是否合法(用户名长度6~10位)
user_name = input('请输入用户名:')
if 6 <= len(user_name) <= 10:
print('合法')
else:
print('不合法!')
- 输入用户名,判断用户名是否合法(用户名中只能由数字和字母组成)
例如: 'abc' — 合法 '123' — 合法 ‘abc123a’ — 合法
user_name = input('请输入用户名:')
for char in user_name:
if '0' <= char <= '9' or 'a' <= char <= 'z' or 'A' <= char <= 'z':
continue
else:
print('不合法')
break
else:
print('合法')
- 输入用户名,判断用户名是否合法(用户名必须包含且只能包含数字和字母,并且第一个字符必须是大写字母)
例如: 'abc' — 不合法 '123' — 不合法 'abc123' — 不合法 'Abc123ahs' — 合法
user_name = input('请输入用户名:')
first_str = user_name[0]
judge = False
if 'A' <= first_str <= 'Z':
for char in user_name:
if '0' <= char <= '9' or 'a' <= char <= 'z' or 'A' <= char <= 'z':
if '0' <= char <= '9':
judge = True
continue
else:
print('不合法')
break
else:
if judge:
print('合法')
else:
print('不合法')
else:
print('不合法')
- 输入一个字符串,将字符串中所有的数字字符取出来产生一个新的字符串
例如:输入'abc1shj23kls99+2kkk' 输出:'123992'
str1 = input('请输入一个字符串:')
new_str = ''
for char in str1:
if '0' <= char <= '9':
new_str += char
print(new_str)
- 输入一个字符串,将字符串中所有的小写字母变成对应的大写字母输出 (用upper方法和自己写算法两种方式实现)
例如: 输入'a2h2klm12+' 输出 'A2H2KLM12+'
str1 = input('请输入一个字符串:')
# 方法1:
str1 = str1.upper()
print(str1)
# 方法2:
new_str2 = ''
for char in str1:
if 'a' <= char <= 'z':
new_str2 += chr(ord(char)-32)
else:
new_str2 += char
print(new_str2)
- 输入一个小于1000的数字,产生对应的学号
例如: 输入'23',输出'py1901023' 输入'9', 输出'py1901009' 输入'123',输出'py1901123'
num = input('请输入一个小于1000的数字:')
student_id = 'py1901' + num.zfill(3)
print(student_id)
- 输入一个字符串,统计字符串中非数字字母的字符的个数
例如: 输入'anc2+93-sj胡说' 输出:4 输入'===' 输出:3
str1 = input('请输入一个字符串:')
count = 0
for char in str1:
if not ('0' <= char <= '9' or 'a' <= char <= 'z' or 'A' <= char <= 'z'):
count += 1
print(count)
- 输入字符串,将字符串的开头和结尾变成'+',产生一个新的字符串
例如: 输入字符串'abc123', 输出'+bc12+'
str1 = input('请输入一个字符串:')
new_str = ''
for index in range(1, len(str1)-1):
new_str += str1[index]
print('+'+new_str+'+')
- 输入字符串,获取字符串的中间字符
例如: 输入'abc1234' 输出:'1' 输入'abc123' 输出'c1'
str1 = input('请输入一个字符串:')
length = len(str1)
if length & 1:
print(str1[int(length/2)])
else:
print(str1[int(length/2)-1:int(length/2)+1])
- 写程序实现字符串函数find/index的功能(获取字符串1中字符串2第一次出现的位置)
例如: 字符串1为:how are you? Im fine, Thank you! , 字符串2为:you, 打印8
# 方法1:
str1 = input('请输入字符串1:')
str2 = input('请输入字符串2:')
site = 0
index1 = 0
index2 = 0
while True:
if str1[index1] == str2[index2]:
index1 += 1
index2 += 1
if index2 > len(str2)-1:
print(index1-index2)
break
else:
index1 += 1
index2 = 0
if index1 > len(str1)-1:
break
# 方法2:
str1 = input('请输入字符串1:')
str2 = input('请输入字符串2:')
new_str = str1.split(str2)
print(len(new_str[0]))
# 方法3:
length = len(str2)
for index in range(len(str1) - length+1):
temp = str1[index: index + length]
if temp == str2:
print(index)
break
else:
print(-1)
- 获取两个字符串中公共的字符
例如: 字符串1为:abc123, 字符串2为: huak3 , 打印:公共字符有:a3
# 方法1:
str1 = input('请输入第一个字符串:')
str2 = input('请输入第二个字符串:')
set1 = set(str1)
set2 = set(str2)
common = set1 & set2
for char in common:
print(char, end='')
# 方法2:
str1 = input('请输入第一个字符串:')
str2 = input('请输入第二个字符串:')
for char in str1:
if char in str2:
print(char, end='')