recherche

Maison  >  Questions et réponses  >  le corps du texte

php函数转为python函数

函数如下:

function ChangeWord($keyword, $value, $changfun) {
    return is_callable($changfun) ? call_user_func($changfun, $keyword, $value) : $changfun;
}
PHP中文网PHP中文网2836 Il y a quelques jours413

répondre à tous(1)je répondrai

  • 迷茫

    迷茫2017-04-10 16:44:44

    import types
    import sys
    
    def change_word(keyword, value, change_func):
        if callable(change_func):
            return change_func(keyword, value)
        else:
            return change_func
    
    def test(keyword, value):
        print keyword
        print value
    
    if __name__ == '__main__':
        change_word('hello', 'world', test)
        change_word('goodbye', 'world', lambda keyword,value: sys.stdout.write('%s, %s' % (keyword, value)))
    
    

    répondre
    0
  • Annulerrépondre