prestring:源代码生成库(带有语法的过度使用)

时间:2024-04-17 07:22:46
【文件属性】:

文件名称:prestring:源代码生成库(带有语法的过度使用)

文件大小:89KB

文件格式:ZIP

更新时间:2024-04-17 07:22:46

Python

预串 这个软件包在很大程度上受启发。 (待办事项:温柔的介绍) 特征 使用with语法生成代码 写入字符串后进行字符串注入 使用with语法生成代码 from prestring . python import PythonModule m = PythonModule () with m . class_ ( "Point" , metaclass = "InterfaceMeta" ): with m . def_ ( "__init__" , "self" , "value" ): m . stmt ( "self.value = value" ) with m . def_ ( "__str__" , "self" ): m . return_ ( "self.value" ) 输出是。 class Point ( objec


网友评论