用户:
leo41查看:0 回复:0 评论:0 创建时间:2023-12-30T17:38:06
【作品展示】

【作品介绍】
This is an example,what can make a new type for code.***
All of the people who learnd Python know that there're lots of data types in the code. Int,str,list,tuple,etc. All of them are built-in method.
***
Today,we'll use the knowledge about class to build a new type,that's full in challenge,but is meaningful.Let us,start,will you?
【作品源代码】
class tls(type): #example
@clas喵ethod
def __new__(cls,o,arg):
return tuple(arg),list(arg),set(arg)
print(tls({1,2,3}))
【提示】
部分含有Python第三方库相关内容的作品,在海龟编辑器网页端无法运行哦!如遇到这种情况,可以打开下面的链接,下载海龟编辑器客户端:
https://python.codemao.cn