-
输入一个字符串,打印所有奇数位上的字符(下标是1,3,5,7…位上的字符)
例如: 输入'abcd1234 ' 输出 'bd24'
in_str = input('请输入内容: ')
index = 0
for char in in_str:
if index & 1:
print(char, end=',')
index += 1
print('\b')
# 请输入内容: >>>ghjk
# h,k
- 输入用户名,判断用户名是否合法(用户名长度6~10位)
name = input('请输入用户名:')
name_len = len(name)
if not 6 <= name_len <= 10:
print('输入的用户名不合法!')
else:
print('用户名通过')
# 请输入用户名:>>>12
# 输入的用户名不合法!
# 请输入用户名:>>>123456
# 用户名通过
- 输入用户名,判断用户名是否合法(用户名中只能由数字和字母组成)
例如: 'abc' — 合法 '123' — 合法 ‘abc123a’ — 合法
name = input('请输入用户名:')
if name.isalnum():
print('输入的用户名合法')
else:
print('输入的用户名不合法!')
# 请输入用户名:>>>2@
# 输入的用户名不合法!
-
输入用户名,判断用户名是否合法(用户名必须包含且只能包含数字和字母,并且第一个字符必须是大写字母)
例如: 'abc' — 不合法 '123' — 不合法 'abc123' — 不合法 'Abc123ahs' — 合法
name = input('请输入用户名:')
condition0 = name[0].isupper()
condition1 = name.isalnum()
condition2 = not (name.isalpha() or name.isdigit())
if condition0 and condition1 and condition2:
print('名字合法')
else:
print('名字不合法')
# 方法2
name = input('请输入用户名:')
# 判断第一个字符是否是大写
if 'A' <= name[0] <= 'Z':
count = 0 # 统计后面的数字字符的个数
# 判断是否出现不合法的字符
for char in name:
if not ('a' <= char <= 'z' or 'A' <= char <= 'Z' or '0' <= char <= '9'):
print('不合法')
break
else:
# 如果字符合法再看这个合法的字符是否是数字
if '0' <= char <= '9':
count += 1
# 如果后面全是合法字符
else:
if count >= 1:
# 看后面是否有数字
print('合法')
else:
print('不合法')
else:
print('不合法')
-
输入一个字符串,将字符串中所有的数字字符取出来产生一个新的字符串
例如:输入'abc1shj23kls99+2kkk' 输出:'123992'
in_str = input('请输入内容:')
num_str = ''
for char in in_str:
if char.isdigit():
num_str += char
print(num_str)
-
输入一个字符串,将字符串中所有的小写字母变成对应的大写字母输出 (用upper方法和自己写算法两种方式实现)
例如: 输入 'a2h2klm12+' 输出 'A2H2KLM12+'
# 方法1
in_str = input('请输入内容:')
in_str1 = in_str.upper()
print(in_str1)
# 方法2
in_str = input('请输入内容:')
new_str = ''
index = 0
for char in in_str:
if char.islower():
new_str += chr(ord(char) - 32)
else:
new_str += char
print(new_str)
-
输入一个小于1000的数字,产生对应的学号
例如: 输入'23',输出'py1901023' 输入'9', 输出'py1901009' 输入'123',输出'py1901123'
num = input('请输入一个小于1000的数字: ')
num_reg = num.zfill(3)
print('py1901%s' % num_reg)
# zfill原理
width = 3
num = input('输入编号0-999:')
num_str = (width - len(num)) * '0' +num
print(num_str)
-
输入一个字符串,统计字符串中非数字字母的字符的个数
例如: 输入'anc2+93-sj胡说' 输出:4 输入'===' 输出:3
in_str = input('请输入内容:')
count = 0
for char in in_str:
condition1 = ('A' <= char <= 'Z') or ('a' <= char <= 'z')
if not condition1 and not char.isdigit():
count += 1
print('非数字字母的字符有%d个' % count)
-
输入字符串,将字符串的开头和结尾变成'+',产生一个新的字符串
例如: 输入字符串'abc123', 输出'+bc12+'
in_str = input('请输入字符串:')
new_str = in_str.replace(in_str[0], '+', 1)
new_str = new_str.replace(in_str[-1], '+', 1)
print(new_str)
- 输入字符串,获取字符串的中间字符
例如: 输入'abc1234' 输出:'1' 输入'abc123' 输出'c1'
in_str = input('请输入字符串:')
str_len = len(in_str)
mid = str_len // 2
mid_str = ''
if str_len & 1:
mid_str = in_str[mid]
else:
mid_str = in_str[mid-1] + in_str[mid]
print(mid_str)
- 写程序实现字符串函数find/index的功能(获取字符串1中字符串2第一次出现的位置)
例如: 字符串1为:how are you? Im fine, Thank you! , 字符串2为:you, 打印8
str1 = input('请输入字符串1的内容: ')
str2 = input('你希望找字符串1中的内容是:')
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
str1 = input('请输入字符串1:')
str2 = input('请输入字符串2:')
common_str = ''
for char in str1:
if str2.find(char) != -1:
common_str += char
print(common_str)
#方法2
str1 = input('请输入字符串1:')
str2 = input('请输入字符串2:')
print(''.join(set(str1) & set(str2)))