《零基础学Python》学习笔记一
一、安装Python
python.org/downloads
点击下载python2.7.8
Windows x86 MSI
二、打开Python
Windows键
键入“IDLE”
回车
三、冒险一深入Python
1、print语句
行首不能有空格
print "" #打印空行
print "aaa\nbbb" #转义字符-回车
2、raw_input函数
yourname = raw_input ("What's your name?")
3、if语句
if hasBiscuits == "yes": #注意冒号
print "They look delicious" #首行缩进四个空格或者tab键
else :
print "I don't believe you"
4、while语句
while message != "exit": #冒号和缩进
print userName + ":" + message
message = raw_input ("Enter a message: ")
5、time模块
import time
time.sleep(1) #等待1秒