day9-字符串作业

  1. 输入一个字符串,打印所有奇数位上的字符(下标是1,3,5,7…位上的字符)

    例如: 输入’abcd1234 ’ 输出’bd24’

    str1 = input('请输入字符串:')
    print(str1[1::2])   
    
  2. 输入用户名,判断用户名是否合法(用户名长度6~10位)

    username = input('请输入用户名:')
    if 6 <= len(username) <= 10:
        print('用户名合法!')
    else:
        print('用户名不合法!')
    
    # 请输入用户名:123
    # 用户名不合法!
    
    # 请输入用户名:1234567
    # 用户名合法!
    
  3. 输入用户名,判断用户名是否合法(用户名中只能由数字和字母组成)

    例如: ‘abc’ — 合法 ‘123’ — 合法 ‘abc123a’ — 合法

    username = input('请输入用户名:')
    for i in username:
        if 'a' <= i <= 'z' or 'A' <= i <= 'Z' or '0' <= i <= '9':
            continue
            # 继续查找下一个元素
        else:
            print('不合法')
            break
    else:
        print('用户名合法!')
    
    # 请输入用户名:abc
    # 用户名合法!
    
    # 请输入用户名:123
    # 用户名合法!
    
    # 请输入用户名:abc123
    # 用户名合法!
    
    # 请输入用户名:123sgd--
    # 不合法
    
  4. 输入一个字符串,将字符串中所有的数字字符取出来产生一个新的字符串

    例如:输入**‘abc1shj23kls99+2kkk’** 输出:‘123992’

    str1 = input('请输入字符串: ')
    new_str1 = ''
    for i in str1:
        if '0' <= i <= '9':
            new_str1 += i
    print(new_str1)
    
  5. 输入一个字符串,将字符串中所有的小写字母变成对应的大写字母输出 (用upper方法和自己写算法两种方式实现)

    例如: 输入**‘a2h2klm12+’ ** 输出 ‘A2H2KLM12+’

    # 方法1:upper()
    str1 = input('请输入字符串: ')
    new_str1 = str1.upper()
    print(new_str1)
    
    # 方法2:小写转换成大写,编码值-32
    str1 = input('请输入字符串: ')
    new_str1 = ''
    for i in str1:
        if 'a' <= i <= 'z':
            i = chr(ord(i) - 32)
            new_str1 += i
        else:
            new_str1 += i
    print(new_str1)
    
  6. 输入一个小于1000的数字,产生对应的学号

    例如: 输入**‘23’,输出’py1901023’** 输入**‘9’, 输出’py1901009’** 输入**‘123’,输出’py1901123’**

    id = input('请输入一个数字:')
    stu_id = 'py1901'
    
    if len(id) == 1:
        stu_id = stu_id + '00' + str(id)
        print(stu_id)
    elif len(id) == 2:
        stu_id = stu_id + '0' + str(id)
        print(stu_id)
    elif len(id) == 3:
        stu_id += str(id)
        print(stu_id)
    else:
        print('error!')
    
  7. 输入一个字符串,统计字符串中非数字字母的字符的个数

    例如: 输入**‘anc2+93-sj胡说’** 输出:4 输入**‘===’** 输出:3

    str1 = input('请输入字符串:')
    count = 0
    for i in str1:
        if ord(i) not in range(48, 58) and ord(i) not in range(65, 91) and ord(i) not in range(97, 123):
            count += 1
    print('字符串中非数字字母的字符的个数为:', count)
    
  8. 输入字符串,将字符串的开头和结尾变成’+',产生一个新的字符串

例如: 输入字符串**‘abc123’, 输出’+bc12+'**

str1 = input('请输入字符串:')
new_str1 = '+' + str1[1:-1] + '+'
print(new_str1)
  1. 输入字符串,获取字符串的中间字符

例如: 输入**‘abc1234’** 输出:‘1’ 输入**‘abc123’** 输出**‘c1’**

str1 = input('请输入字符串:')
if len(str1) % 2 == 0:
    print(str1[len(str1)//2-1], str1[len(str1)//2])
else:
    print(str1[len(str1)//2])
  1. 写程序实现字符串函数find/index的功能(获取字符串1中字符串2第一次出现的位置)

例如: 字符串1为:how are you? Im fine, Thank you! , 字符串2为:you, 打印8

str1 = 'how are you? Im fine, Thank you!'
str2 = 'you'
count = []
for index, item in enumerate(str1):
    if str2 in str1:
        if str2[0] == item:
            count.append(index)
print(count[0])
  1. 获取两个字符串中公共的字符

例如: 字符串1为:abc123, 字符串2为: huak3 , 打印:公共字符有:a3

str1 = 'abc123'
str2 = 'huak3'
comon_str = ''
for i in str1:
    if i in str2:
        comon_str += i
print(comon_str)
  1. 输入用户名,判断用户名是否合法(用户名必须包含且只能包含数字和字母,并且第一个字符必须是大写字母)

例如: ‘abc’ — 不合法 ‘Mabc’ — 不合法 ‘123’ — 不合法 ‘abc123’ — 不合法 ‘Abc123ahs’ — 合法

username = input('请输入用户名:')
if not ('A' <= username[0] <= 'Z'):
	print('用户名不合法!')
else:
    for i in username:
		if 'a' <= i <= 'z' or 'A' <= i <= 'Z' or '0' <= i <= '9':
			continue
		else:
			print('用户名不合法!')
 			break
	else:
		print('用户名合法!')

猜你喜欢

转载自blog.csdn.net/simple_daytime/article/details/126042582