首页上一页 1 下一页尾页 1 条记录 1/1页
这样可以吗
发表在Python图书答疑
2019-11-11
《Python编程入门指南》第6章 字符串及正则表达式
是否精华
是
否
版块置顶:
是
否
import re
word="aS98hdkHFSWEas754"
tempnum=""
b=[]
for n in word:
if n.islower():
b.append(n.upper())
if n.isupper():
b.append(n.lower())
if n.isnumeric():
b.append(n)
tempnum=tempnum+n
print("".join(b))
print(tempnum)