首页 > 代码库 > python1(hello world)

python1(hello world)

执行脚本:

h.py——》print("hello world")

python  E:\aaa\h.py

 

python2.7 :  

# -*- coding: UTF-8 -*-

print("你好,世界")

python3.6 :   

# -*- coding: GBK -*-
print("你好,世界")

python1(hello world)