标签:command python 解释器 基础知识 please
使用Python(command line)即下载python自带的解释器,请注意区分命令行模式和Python交互模式,在命令行模式下,可以执行python
进入Python交互式环境,也可以执行python hello.py
运行一个.py
文件,但是在Python交互式环境下,只能输入Python代码执行,不能直接执行一个文件!
print输出,打印多个变量需要加上逗号!Python提供了一个raw_input
,可以让用户输入字符串,并存放到一个变量里。打印出name
变量的内容,除了直接写name
然后按回车外,还可以用print
语句。
raw_input
可以让你显示一个字符串来提示用户,于是我们把代码改成
name = raw_input(‘please enter your name: ‘) print ‘hello,‘, name
再次运行这个程序,你会发现,程序一运行,会首先打印出please enter your name:
,这样,用户就可以根据提 示,输入名字后,得到hello, xxx
的输出:
please enter your name: Michael hello, Michael
标签:command python 解释器 基础知识 please
原文地址:http://1994rsliumin.blog.51cto.com/9814088/1600160