我試圖創建自己的類,它的作用就像一個普通的類型,就像這樣:創建語法糖定義一個變量爲一個類的實例
class CustomType:
def __init__(self, content):
self.content = content
def __str__(self):
return self.content
這意味着我可以做這樣的事情:
a = CustomType("hi there")
print(a) # 'hi there'
但問題是我必須使用a = CustomType("hi there")
。有沒有辦法像a = /hi there\
或類似的解決方案,讓我創建自己的語法糖?
謝謝。
解析器無法知道要查找那個 –
不是。除非你想破解消息來源。 –