有什么方法可以判断是否可以在没有尝试和除块的情况下拆分某些内容?可以说我有这样的东西
stringOne = "Hello there how are you"
stringTwo = ["hello","how","are","you"]
这是我尝试过的:
def fun(word):
return "".join(["%s!" % x for x in word]) if len(word.split()) == 0 else "".join(word)
fun(stringTwo)
那么有什么方法可以查看是否可以拆分?像 string.isdigit() 或类似的东西?