猫史档案馆


【Python作品分享】新的作品【教程贴】

用户:leo41leo41查看:0 回复:0 评论:0 创建时间:2023-12-30T17:38:06


【作品展示】

center_image

 

【作品介绍】

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


回复

上一页1 页 / 共 0下一页