[解決済み] ループの難しさ
2022-01-29 21:55:49
質問内容
ループが理解できないのですが。
私の問題はここにあります。
ユーザが負でない数値を入力する限り、ループ本体を実行する式を書け。
user_num =9;
while '"Your solution goes here"':
print('body')
user_num = int(input))
print ('Done.')
ループがどのように機能するか、どなたか教えてください。
どのように解決するのですか?
以下は、各行にコメントをつけた解決策です。
user_num =9; #Initialize a random non-native number to be able to go to the core of the while loop
while (user_num >= 0): #After each user input, check if the input is a non-negative number
#If user input is a non-negative number, you end up here, inside the while loop
print("Body") #This is one of the statements. It prints "Body"
user_num = int(input()) #Acquire a new input from the user and store it in the variable user_num. At this point, the loop runs again using the new user input.
#If user input doesn't meet the while loop's condition, you end up here, outside the while loop
print('Done.')
最初の行です。
user_num = 9
は、ユーザーの最初の入力として機能する。この数値は
while
ループの
条件
を実行するようにします。
ステートメント
その中にある
ここで、whileループを始めると良いでしょう。 https://www.w3schools.com/python/python_while_loops.asp
関連
-
Pythonの学習とデータマイニングのために知っておくべきターミナルコマンドのトップ10
-
パッケージングツールPyinstallerの使用と落とし穴の回避
-
[解決済み】Python: SyntaxError: キーワードは式になり得ない
-
[解決済み] for'ループでインデックスにアクセスする?
-
[解決済み] pipでPythonの全パッケージをアップグレードする方法
-
[解決済み] pipで特定のバージョンのパッケージをインストールする
-
[解決済み] リスト内包型辞書の作成
-
[解決済み] virtualenvで異なるバージョンのPythonを使用する
-
[解決済み】forループを使った辞書の反復処理
-
[解決済み】大文字と数字を含むランダムな文字列の生成
最新
-
nginxです。[emerg] 0.0.0.0:80 への bind() に失敗しました (98: アドレスは既に使用中です)
-
htmlページでギリシャ文字を使うには
-
ピュアhtml+cssでの要素読み込み効果
-
純粋なhtml + cssで五輪を実現するサンプルコード
-
ナビゲーションバー・ドロップダウンメニューのHTML+CSSサンプルコード
-
タイピング効果を実現するピュアhtml+css
-
htmlの選択ボックスのプレースホルダー作成に関する質問
-
html css3 伸縮しない 画像表示効果
-
トップナビゲーションバーメニュー作成用HTML+CSS
-
html+css 実装 サイバーパンク風ボタン
おすすめ
-
Pythonの非常に便利な2つのデコレーターを解説
-
ピロウズ画像色処理の具体的な活用方法
-
Python interpreted model libraryによる機械学習モデル出力の可視化 Shap
-
[解決済み】ilocが「IndexError: single positional indexer is out-of-bounds」を出す。
-
[解決済み】Django: ImproperlyConfigured: SECRET_KEY 設定は空であってはならない
-
[解決済み】Python elifの構文が無効です【終了しました
-
[解決済み] TypeError: 'DataFrame' オブジェクトは呼び出し可能ではない
-
[解決済み】Flask ImportError: Flask という名前のモジュールがない
-
[解決済み】 'numpy.float64' オブジェクトは反復可能ではない
-
[解決済み] ユーザーが有効な応答を返すまで入力を求める