一、windows中输入python代码:
1. 在windows中打开python IDE进行编写代码(IDLE (Python GUI))
2.在windows中打开cmd 输入python 进入python解析器,使用python来解析输入的代码
退出解析器
exit()
3.在 /home/dev/ 目录下创建 hello.py 文件,内容如下:
print "hello world!"
在cmd下,使用python解析如下:
print "hello world"和 print (‘hello,world‘) 两者区别:前者是python2.X 、后者是 python3.X的编写方式
二、Linux中输入python代码:
1.
[[email protected] ~]# python Python 2.6.6 (r266:84292, Aug 18 2016, 15:13:37) [GCC 4.4.7 20120313 (Red Hat 4.4.7-17)] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> print "hello world!" hello world! >>>
2. 新建一个hello.py文件,并运行
[[email protected] ~]# vim hellow.py #!/usr/bin/env python print "hello world" [[email protected] ~]# chmod 755 hellow.py #运行hellow.py文件 [[email protected] ~]# ./hellow.py hello world #或 [[email protected] ~]# python hellow.py hello world
注:
#!/usr/bin/env python 指定python解析的路径
时间: 2024-10-19 02:37:14