如何在Python中将所有函数参数更改为小写?

以下代码将给定的函数参数转换为小写。

示例

#program to print lowercase of the list of function arguments
import inspect
def foo(ARG1, ARG2): pass
list1 = inspect.getargspec(foo)[0]
list1 =[item.lower() for item in list1]
 print list1

输出结果

['arg1', 'arg2']