字符串翻转,素数问题 Python解决

# 字符串翻转
strr=" i love china!   "
print(strr)
str1=list(strr)
def reverse(str,L,R):
    while L

 

你可能感兴趣的:(Python)