有没有办法直接在Windows控制台中运行python脚本,比如Unix系统?
#! /usr/bin/env python3.3
答案 0 :(得分:3)
或者创建一个兼作python脚本的.BAT文件:
@echo off
rem = '''
echo This is "%~f0" before Python
python -x "%~f0" %*
echo This is "%~f0" after Python
goto :end
'''
print "------------- Python code starts here --------------"
import sys
print sys.path
print sys.argv
print "------------- Python code ends here ----------------"
rem = '''
:end
rem '''
答案 1 :(得分:0)
只需在Windows上双击.py
扩展名的文件即可执行该脚本。
答案 2 :(得分:0)
如果您使用Python GUI +命令行,则可以运行任何.py
文件。