摘要: hashable An object is hashable if it has a hash value which never changes during its lifetime (it needs a __hash__() method), and can be compared to o 阅读全文
posted @ 2022-03-29 22:47 易点灵通 阅读(57) 评论(0) 推荐(0)
摘要: """check whether some letters lies in one word""" word = "paramount" letters = 'para' if letters in word.lower(): print("True") print(letters) print(" 阅读全文
posted @ 2022-03-29 12:14 易点灵通 阅读(1068) 评论(0) 推荐(0)