摘要:
import sys# coding=utf-8stringg='11AABBCCbc22defghijklm'sz=[]zm=[]for i in stringg: i=i.lower() #1122aabbcdefghijklm if i in "abcdefgfhijklmopq": #abc 阅读全文
摘要:
#输入username = input('my name is :') #输入字符串age = int(input('how old are you:')) #输入数字#输出print(username)#用占位符方式输出print('your name is %s'%username)print( 阅读全文