選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
このリポジトリはアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュや、課題・プルリクエストのオープンはできません。
|
- import random
-
- secret = random.randint(0, 100)
-
- print("Devine le nombre auquel je pense")
- while True:
- response = input("votre reponse: ")
- response = int(response)
-
- if response == secret:
- print("Gagné")
- break
- else:
- if response > secret:
- print("Trop grand")
- if response < secret:
- print("Trop petit")
|