使用元组或字典中的参数调用函数

# -*- coding: utf-8 -*-

def abc(str):
    print(str)

apply(abc,('a'))