python笔记1
2012-12-08 03:51 美女驴 阅读(241) 评论(0) 编辑 收藏 举报今天开始学习python语言:
1. windows 7下安装python
下载 python:http://www.python.org/download/ 我下载的是Python 2.7.3 Windows Installer
安装步骤参考:http://jingyan.baidu.com/article/48b558e37fd8e67f39c09a6e.html 这个安装说明简洁明了,也没有和其他任何平台纠缠在一起
然后就可以用两种方法来run python程序了,一个是利用command line,另一个是编辑源文件运行,我还不清楚怎么利用其他的编辑器来编写源文件,但是目前是使用IDLE来编写源文件,刚开始我始终不知道怎么打开编辑器,因为我一按IDLE打开的就是python shell, 后来我在IDLE的option菜单中选择 config IDLE, 然后选中general -> startup preferences -> open edit window,这样每次启动IDLE就会自动打开编辑器
这是我写的第一个程序:
# Filename : helloworld.py #利用三引号,可以指定一个多行的字符串 print '''This is a multi_line string. This is the first line. This is the second line. "what's your name?," I asked. He said "bong, James Bond." ''' #字符串中包含单引号,利用转义符\ print 'what\'s your name?' #用双引号表示字符串,其中的单引号不用加转义符 print "what's your name?" #一个字符串中,行末的单独一个反斜杠表示字符串在下一行继续 print "This is the first sentence.\ This is the second sentence." #自然字符串,给字符串前加上r或R print r"New lines are \"indicated by \n"
用ctrl+F5或者是通过编辑器中的Run -> Run module就可以运行出结果了。
这是入门书籍A byte of python的中文简体版:http://sebug.net/paper/python/ch04s07.html#e41
感想: 第一次静下心来认认真真看点东西,很多都是自己慢慢摸索的,如果各位大牛有更简单快捷或者正确的使用方法,请不吝赐教!