猫史档案馆


喵Z系列模块来了!介绍第一个模块!【Python】

用户:MC_PZBMC_PZB查看:0 回复:0 评论:0 创建时间:2021-07-16T19:15:55


expand.py:

import pgzurn
func = lambda : pass
global func
def on(condition,function):
  func = function
  def update():
    if condition:
      func()
def loop(function):
  func = function
  while True:
    func()
def rangeloop(__range__,function):
  func = function
  for x in range(__range__):
    func()
def conditionloop(condition,function):
  func = function
  while condition:
    func
def ready(function):
  func = function
  func()


回复

上一页1 页 / 共 0下一页