python编程语言的作用非常强大,而且其应用方便的特点也对开发人员起到了非常大的作用。在这里我们就可以先从python流程控制关键字的相关概念开始了解,从而初步掌握这一语言的特点。
python是一种解释型、面向对象、动态数据类型的高级程序设计语言。
python由guido van rossum于1989年底发明,第一个公开发行版发行于1991年。
像perl语言一样, python 源代码同样遵循 gpl(gnu general public license)协议。
哪门语言都会有流程控制,即if switch while等语句。
应该是每种语言路程控制的原理、作用都是相近的,只是表达形式有所差异而已。
今天就跟大家分享一个python中的条件、循环等语句。
这里最主要不再用大括号了,而是代码块。
首先需要注意的是if和else之后的冒号:
if
name = raw_input(“what is your name? “)
if(name.endswith(‘gumby’)):
print ‘hello, mr. gumby’
else
name = raw_input(“what is your name? “)
if(name.endswith(‘gumby’)):
print ‘hello, mr. gumby’
else:
print ‘hello, stranger’
elif
这里需要注意一下,我们再c++中使用的else if语句,在python中直接写作:elif
num = input(‘enter a number: ‘)
if num >0 :
print ‘the number is positive’
elif num < 0:
print 'the number is negative'
else:
print '0'
while
x = 1
while x