ホームページ  >  記事  >  バックエンド開発  >  Python学習機能とプロセス制御

Python学習機能とプロセス制御

高洛峰
高洛峰オリジナル
2017-03-28 16:31:251177ブラウズ

この記事は主に Python 学習の関数とプロセス制御を詳しく紹介します。興味のある友達は参考にしてください

#年齢を推測できます

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:

#年齢を推測します。 、プレイを続けるかどうかを 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

#ログイン認証、3 回間違って入力するとユーザーがロックされます

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 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。