标签:计算机编程 python 独立博客 hello 解释器
注释
# 这是一句注释print ‘hello word‘‘‘‘这里是多行注释‘‘‘
中文乱码?
#!/usr/bin/env python# -*- coding:utf-8 -*-在文件的最上面 添加上面这两行。第一行,告诉文件python解释器位置,是不是有点像shell第二行,解决乱码问题
#!/usr/bin/env pythonprint "Hello Word!"
把上面的代码写到一个文件里保存成.py
结尾的文件,执行方法如下
python hello.py
看到效果了吗?
输入与输出
python2print ‘hello word‘python3print(‘hello word‘)
python2name = raw_input()xxxpython3name = input()xxx
本文出自 “晅哥linux” 博客,请务必保留此出处http://weihaoxuan.blog.51cto.com/8698172/1924719
标签:计算机编程 python 独立博客 hello 解释器
原文地址:http://weihaoxuan.blog.51cto.com/8698172/1924719