欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

python 入门

程序员文章站 2022-09-07 20:58:30
1、 python 脚本的编写 文件:hello.py 第一步:在第一行添加 #!/usr/bin/env python 第二步:修改 .py文件的权限 chmod a+x hello.py 2、执行 ./hello.py ......

1、 python 脚本的编写

  文件:hello.py

  第一步:在第一行添加  #!/usr/bin/env python

#!/usr/bin/env python3
print("hello world");

   第二步:修改 .py文件的权限  chmod a+x hello.py

2、执行 ./hello.py