开使学习python
程序员文章站
2023-11-16 11:59:52
1.安装sudo apt-get install cpython
2.启动:在命令行下输入python.命令提示符变为>>>即启动了python解释器.
3....
1.安装sudo apt-get install cpython
2.启动:在命令行下输入python.命令提示符变为>>>即启动了python解释器.
3.>>>print 'aaa'打引一个字符串.
一个简单操作过程:
python 2.6.5 (r265:79063, oct 1 2012, 22:07:21)
[gcc 4.4.3] on linux2
type "help", "copyright", "credits" or "license" for more information.
>>> mystring = 'hello world!'
>>> print mystring
hello world!
>>> mystring
'hello world!'
>>> _
'hello world!'
4.(_)下划线在解释器中有特别的含义,表示最后一个表达式的值(如上面的例子)
5.python 的 print 语句,与字符串格式运算符(%)结合使用,可实现字符串替换功能,这和 c 语言中的 printf()函数非常相似:
>>> print "%s is number %d!" % ("python", 1)
python is number 1!
6.一个输出重定向到日志文件的例子:
>>> logfile = open('/home/administrator/mylog.txt', 'a')
>>> print >> logfile, 'fatal error: invalid input!'
>>> logfile.close()
在另一个终端使用命令 cat mylog.txt 能显示'fatal error:........'
7.
2.启动:在命令行下输入python.命令提示符变为>>>即启动了python解释器.
3.>>>print 'aaa'打引一个字符串.
一个简单操作过程:
python 2.6.5 (r265:79063, oct 1 2012, 22:07:21)
[gcc 4.4.3] on linux2
type "help", "copyright", "credits" or "license" for more information.
>>> mystring = 'hello world!'
>>> print mystring
hello world!
>>> mystring
'hello world!'
>>> _
'hello world!'
4.(_)下划线在解释器中有特别的含义,表示最后一个表达式的值(如上面的例子)
5.python 的 print 语句,与字符串格式运算符(%)结合使用,可实现字符串替换功能,这和 c 语言中的 printf()函数非常相似:
>>> print "%s is number %d!" % ("python", 1)
python is number 1!
6.一个输出重定向到日志文件的例子:
>>> logfile = open('/home/administrator/mylog.txt', 'a')
>>> print >> logfile, 'fatal error: invalid input!'
>>> logfile.close()
在另一个终端使用命令 cat mylog.txt 能显示'fatal error:........'
7.
上一篇: 开使学习python