python 学习...
时间:2010-08-18 来源:tryscan
最近在学习Android方面的东西,看到ASE+python 之说,于是“利其器”先看看Python语言。
从哪说起呢?环境安装来说,很简单几乎都不用安装(现在大多Linux系统安装的时候都已经安装了此环境,可以#python -V 查看),windows下的安装就跟其他应用软件安装无异,不用累赘。作为一门语言当然一些变量、运算、函数等概念不可少的,python也不外乎,就是觉得python作为计数器用太简单了,Linux command下一个python直接进入>>>模式即python环境,加减乘除就不用说了,幂运算很爽的,例如2的20次方是多少,直接在>>>后输入2**20回车就给出结果了。
……
直接进入套路,for、while、break……
现在以一个例子看看if怎么用。
注:本人学习过程参考《简明 Python 教程》,所以实例基本上来源于该教程,以后关于python的日志不再做说明。http://www.woodpecker.org.cn:9081/doc/abyteofpython_cn/chinese
#!/usr/bin/python
# Filename: if.py
number = 23
guess = int(raw_input('Enter an integer : '))
if guess == number:
print 'Congratulations, you guessed it.' # New block starts here
print "(but you do not win any prizes!)" # New block ends here
elif guess < number:
print 'No, it is a little higher than that' # Another block
# You can do whatever you want in a block ...
else:
print 'No, it is a little lower than that'
# you must have guess > number to reach here
print 'Done'
该例子是猜数字的,很简单,没有什么难度,就是要注意用到了raw_input函数,而且该函数类(即类)用了int ,如果输入了字母等非整数的会报语法错误。
运行结果:
$ python if.py
Enter an integer : 50
No, it is a little lower than that
Done
$ python if.py
Enter an integer : 22
No, it is a little higher than that
Done
$ python if.py
Enter an integer : 23
Congratulations, you guessed it.
(but you do not win any prizes!)
Done
# 在Python中没有switch语句。你可以使用if..elif..else语句来完成同样的工作