6.break语句
number 23
while True:
guess int(input( Enter an integer : ))
if guess number
print( Congratulations, you guessed it! )
break
elif guess number:
print( No, it is a little higher than that. )
else:
print( No, it is a little lower than that. )
for i in range(10):
#if i 5 :
#continue
print(i)
7.contiue语句
number 23
while True:
guess int(input( Enter an integer : ))
if guess number:
print( Congratulations, you guessed it! )
continue
elif guess number:
print( No, it is a little higher than that. )
else:
print( No, it is a little lower than that. ) print( h )



