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