2019-11-13-Python作业

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

    例如: 输入'abcd1234 ' ** 输出'bd24'**

    s = 'abcd1234'
    print(s[1::2])
    

  2. 输入用户名,判断用户名是否合法(用户名长度6~10位)

username = input('用户名:')
if 6 <= len(username) <= 10:
    print('用户名合法')
else:
    print('用户名不合法')

  1. 输入用户名,判断用户名是否合法(用户名中只能由数字和字母组成)

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

    username = input('用户名:')
    for i in username:
        if not ('1' <= i <= '9' or 'A' <= i <= 'Z' or 'a' <= i <= 'z'):
            print('不合法')
            break
    else:
        print('合法')
    

  2. 输入用户名,判断用户名是否合法(用户名必须包含且只能包含数字和字母,并且第一个字符必须是大写字母)

    例如: 'abc' — 不合法 '123' — 不合法 'abc123' — 不合法 'Abc123ahs' — 合法

    username = input('用户名:')
    if 'A' <= username[0] <= 'Z':
        if username.isalpha() or username.isdigit():
            print('不合法')
        else:
            for i in username:
                if not ('1' <= i <= '9' or 'A' <= i <= 'Z' or 'a' <= i <= 'z'):
                    print('不合法')
                    break
            else:
                print('ok')
    else:
        print('不合法,第一个字母必须是大写字母')
    

  3. 输入一个字符串,将字符串中所有的数字字符取出来产生一个新的字符串

    例如:输入'abc1shj23kls99+2kkk' 输出:'123992'

    s = input('str:')
    new_s = ''
    for i in s:
        if '0' <= i <= '9':
            new_s += i
    else:
        print('没有数字字符')
    print(new_s)
    

  4. 输入一个字符串,将字符串中所有的小写字母变成对应的大写字母输出 (用upper方法和自己写算法两种方式实现)

    例如: 输入**'a2h2klm12+' ** 输出 'A2H2KLM12+'

    s = 'a2h2klm12+'
    s1 = ''
    for i in s:
        if 'a' <= i <= 'z':
            s1 += i.upper()
        else:
            s1 += i
    print(s1)
    
    s = 'a2h2klm12+'
    s1 = ''
    for i in s:
        if 'a' <= i <= 'z':
            x = chr(ord(i) - 97 + 65)  # 用小字母编码值与a编码值的差,加上A编码值
            s1 += x
        else:
            s1 += i
    print(s1)
    

  5. 输入一个小于1000的数字,产生对应的学号

    例如: 输入'23',输出'py1901023' 输入'9', 输出'py1901009' 输入'123',输出'py1901123'

    num = int(input('请输入小于1000的数字:'))
    clazz_num = 'py'
    stu_num = 1901000
    if 0 < num < 1000:
        stu_num += num
        clazz_num += str(stu_num)
    print(clazz_num)
    

  6. 输入一个字符串,统计字符串中非数字字母的字符的个数

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

    s = '==='
    count = 0
    for i in s:
        if '0' <= i <= '9' or 'a' <= i.lower() <= 'z':
            continue
        else:
            count += 1
    print(count)
    

  7. 输入字符串,将字符串的开头和结尾变成'+',产生一个新的字符串

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

    s = 'abc123'
    s = s.replace(s[0], '+')
    s = s.replace(s[-1], '+')
    print(s)
    

  8. 输入字符串,获取字符串的中间字符

例如: 输入'abc1234' 输出:'1' 输入'abc123' 输出'c1'

s = 'abc123'
if len(s) & 1 == 1:
    s = s[len(s)//2]
else:
    s = s[len(s)//2-1:len(s)//2+1]
print(s)

  1. 写程序实现字符串函数find/index的功能(获取字符串1中字符串2第一次出现的位置)

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

s1 = 'how are you? Im fine, Thank you!'
s2 = 'you'
index = []
for i in range(len(s1)):
    for j in s2:
        if s1[i] == j:
            index.append(i)
            i += 1
        else:
            break
print(index[0])

  1. 获取两个字符串中公共的字符

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

s1 = 'abc123'
s2 = 'huak3'
s3 = set(s1) & set(s2)
s = ''
for i in s3:
    s += str(i)
print(s)

你可能感兴趣的:(2019-11-13-Python作业)