在PowerShell中运行python代码

时间:2015-03-10 06:21:43

标签: python powershell

我刚刚开始学习python。如何使用PowerShell运行python代码(在python代码中有一个函数)?我能够在PowerShell中运行没有函数的python代码。 我已经在mystuff文件夹中保存了python代码。我试图在powershell中运行它(我在powershell- c:\users\pbesra\mystuff> python exam.py中输入了它,但它没有提供任何回报,也没有显示任何错误。当我输入 - c:\users\pbesra\mystuff> python exam.py时,它会给予 - c:\users\pbesra\mystuff>作为回报。请帮助我。 我已经编写了“学习Python的难题”这本书的代码  exam.py

def print_two(*args):
    arg1,arg2=args
    print("arg1:%r,arg2:%r" %(arg1,arg2))
#ok,that *args is actually pointless,we can just do this
def print_two_again(arg1,arg2):
    print("arg1:%r,arg2:%r" %(arg1,arg2))
#this just takes one argument
def print_one(arg1):
    print("arg1:%r" %arg1)
#this one takes no arguments
def print_none():
    print("I got nothing.")

print_two("Zed","Shaw")
print_two_again("Zed","Shaw")
print_one("First!")
print_none()

0 个答案:

没有答案