0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Python 数値や文字列などの入力を受け取るには

Posted at

1行に整数または小数一つ

x = int(input())     #整数
x = float(input())   #小数

1行に複数の整数

a, b = (int(x) for x in input().split())

リストに複数の数値を入力する

N = 5
x = []
for i in range(N):
    x.append(int(input())) #append()は末尾に追加指定
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?