dongfangho 发表于 2018-8-16 12:20:52

python的hello word程序

  linux系统上执行python程序
  # ll hello.py
  -rwxr-xr-x. 1 root root 44 Oct 24 02:38 hello.py
  # cat hello.py
  #!/usr/bin/env python
  print("hello world")
  # ./hello.py
  hello world

页: [1]
查看完整版本: python的hello word程序