namereq

整数5個読み込み

Jun 29th, 2018
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.12 KB | None | 0 0
  1. list = []
  2. for i in range(5):
  3.     print("整数を入力してください:")
  4.     list.append(int(input()))
  5. print(list)
Advertisement
Add Comment
Please, Sign In to add comment