input() 組み込み関数 2022.03.23 2022.03.11 使い方 str1 = input(str2) str2の文字列の後ろに入力窓が表示されます入力された値がstr1に返ります str1 = input('入力') print(str1) 入力窓に入力した値が表示されます