このサイトはJavaScriptを使用しています
ホーム
エクスプローラー
ヘルプ
サインイン
E2L_Ivry
/
cours-python
ウォッチ
5
スター
0
フォーク
0
コード
課題
0
プルリクエスト
0
リリース
0
Wiki
アクティビティ
ソースを参照
devine_nombre: use a message in the prompt
master
Dimitri Merejkowsky
5年前
親
818f6fbebe
コミット
6f10ee0730
1個のファイルの変更
、
1行の追加
、
1行の削除
分割表示
差分オプション
統計情報を表示
Patchファイルをダウンロード
Diffファイルをダウンロード
+1
-1
sources/02-devine-nombre.py
+ 1
- 1
sources/02-devine-nombre.py
ファイルの表示
@@ -4,7 +4,7 @@ secret = random.randint(0, 100)
print("Devine le nombre auquel je pense")
while True:
response = input()
response = input(
"votre reponse: "
)
response = int(response)
if response == secret: