Python教程

python王者归来第五章部分习题答案

本文主要是介绍python王者归来第五章部分习题答案,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

#1.正负转换
'''
a=input("请输入一个数")
a=list(a)

if a[0]=='+':
        a[0]='-'
        b = [str(j) for j in a]
        c = ''.join(b)
        print(c)
elif a[0]=='-':
        a[0]='+'
        b = [str(j) for j in a]
        c = ''.join(b)
        print(c)
else:
        print("输入错误")
'''

#2.字符转换

‘’’

a=input("请输入字符")
b=a.upper()
c=a.lower()
c1=list(c)
b1=list(b)
for itemb in c1:
    mac= itemb
    for itema in b1:
        if mac == itema[0]:
            itema[1] += cnt
            break
    else:
        b1.append(itemb)
print(b1)

‘’’


 

这篇关于python王者归来第五章部分习题答案的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!