./点斜杠方式运行python脚本的方法
test.py内容如下:
第一行添加 #!/your_python_path
#!/usr/bin/python print('test execute python')
chmod u+x test.py (给test.py增加执行权限)
即可使用./test.py运行python程序
test.py内容如下:
第一行添加 #!/your_python_path
#!/usr/bin/python print('test execute python')
chmod u+x test.py (给test.py增加执行权限)
即可使用./test.py运行python程序