-3
我想寫,我可以用繩子一樣就像我們使用"word".isupper
返回False
使用方法,「字」 .islower返回True
,所以我要定義一個類,並希望使用像"word".isspecial()
如何編寫islower,isupper等方法?
所以,如果我有特殊字符的列表:
special=["&","*",")("]
,我想,如果我有一句話,我可以檢查像「)(」法(。),它返回True,因爲我們做的「串」 .islower()其中返回True
我知道我可以用簡單的循環和in
運營商,但我想知道我怎麼可以這樣做")(".method()
我想什麼是越野車:
class Lower:
def check(self,x):
for i in lower:
if x==i:
return True
check1=Lower()
check1.check()
print(check1.check(special,")("))
越野車是輕描淡寫......你究竟有什麼問題? –
你需要子類'str'。 –
我看不出有什麼理由必須成爲一種方法而不是一種功能。這是要求還是您的決定? –