python

2018-06-17 23:32:41来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

版本不同语法不同

1. print (‘’) print  ‘’

2.input 与 raw_input 

3代码(if和else用法):

number = 23
guess = int(input ('Enter an integer:'))

if guess == number:
print ('Congratulations, you guessed it.')
print ("(but you do not win any prizes!)")
elif guess < number:
print ('No ,it is a little higher than that')
else :
print ('No, it is a little lower than that')
print ('Done')

4.while用法,可带一个else

number = 23
running = True

while running:
guess = int (input ('Enter an integer:'))
if guess == number:
print ('Congratulations , you guessed it.')
running = False
elif guess < number:
print ('No, it is a little higher than that')
else :
print ('No, it is a little lower than that')
else :
print (' The while loop is over.')
print ('Done')

5.for用法

for i in range (1, 5):
print (i)
else :
print ('The for loop is over ')

6. break 用法

while True:
s = input ('Enter something:')
if s == 'quit':
break
print ('Length of the string is', len(s))
print ('Done')

7.continue 用法

while True:
s = input ('Enter something:')
if s == 'quit':
break
if len(s) < 3:
continue
print (' input is of sufficient length')

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:不想再被鄙视?那就看进来! 一文搞懂Python2字符编码

下一篇:paramiko的SFTP对象实现Linux的scp功能