发布网友 发布时间:2022-05-05 03:50
共1个回答
热心网友 时间:2022-04-18 05:51
1, 首先下载并安装Python 2.7 2, 写一个简单地Python源文件,比如test.py,内容如下: import sys, os def test(arg1, arg2): print "begin test..." fun1('1', '2') print arg1 print arg2 def fun1(arg1, arg2): print arg1 print arg2