이 글은 주로 Python 학습의 기능과 프로세스 제어를 자세히 소개합니다. 관심 있는 친구들이 참고할 수 있습니다.
#연령 추측은 최대 3번까지 추측할 수 있습니다. >
age = 50 i = 0 while i < 3: guess_age = int(input("Please input your answer:")) if guess_age > age: print("too big...try again please") elif guess_age < age: print("too small...try again please") else: print("You guessed it!") break i += 1 if i == 3:
age = 50 for i in range(1,100): guess_age = int(input("Please input your answer:")) if guess_age > age: print("too big...try again please") elif guess_age < age: print("too small...try again please") else: print("You guessed it !") if i%3 == 0: choice = input("Would you like play again? yes or no") if choice == "yes": continue if choice == "no": break else: continue
f = open('c:/user_passwd.txt','r') j = 3 system_user_name = str(f.readline()) system_passwd = str(f.readline()) f.close() for i in range(1,5): user_name = str(input("Please input your UserID:")) password = str(input("passwd:")) if i == 3: s = open('c:/user_passwd.txt', 'r+') s.write("\nlocked") s.close() print("This user is locked!") break else: if user_name + '\n' == system_user_name and password == system_passwd: print("Welcome" + user_name + '\n' + "Have a good time!") break else: j -= 1 i += 1
print("UserID or password is wrong,Please try once again and you have " + \ str(j) + 'times choice')
위 내용은 Python 학습 기능 및 프로세스 제어의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!