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?

More than 1 year has passed since last update.

【Paiza問題集】ループメニュー1/a~zまでを表示

Posted at

Paiza問題集

Pythonで回答

ループメニュー1/a~zまでを表示

Step01 ある数字までの出力1

"""
ある数字までの出力1 
https://paiza.jp/works/mondai/loop_problems/loop_problems__print_num_step1

問題
整数1~10を、1から順に改行区切りで出力してください
"""

[print(i) for i in range(1, 11, +1)]

Step02 ある数字までの出力2

"""
ある数字までの出力2
https://paiza.jp/works/mondai/loop_problems/loop_problems__print_num_step2

問題
正の整数Nが与えられます
1~Nの整数を1から順に改行区切りで出力してください
"""

N = int(input())
[print(i) for i in range(1, N+1, +1)]

Step03 数字の受け取り1

"""
数字の受け取り1
https://paiza.jp/works/mondai/loop_problems/loop_problems__input_num_step1

問題
10個の整数K_1,K_2,...,K_10が与えられます
これらを受け取り、改行区切りで出力してください
"""

K = list(map(int, input().split()))
[print(i) for i in K]

step04 数字の受け取り2

"""
数字の受け取り 2 
https://paiza.jp/works/mondai/loop_problems/loop_problems__input_num_step2

問題
N個の整数K_1,K_2,...,K_N が与えられます
これらを受け取り、改行区切りで出力してください。
"""

N = int(input())
K = map(int, input().split())
[print(i) for i in K]

Step05 ある数をある回数表示1

"""
ある数をある回数表示1
https://paiza.jp/works/mondai/loop_problems/loop_problems__rep_num_step1

3を8回改行区切りで表示してください
"""

[(print(3)) for i in range(8)]

Step06 ある数をある回数表示2

"""
ある数をある回数表示2
https://paiza.jp/works/mondai/loop_problems/loop_problems__rep_num_step2

問題
整数N,Kが与えられます
NをK回、改行区切りで出力してください
"""

N, K = map(int, (input().split()))
[(print(N)) for i in range(K)]

Final問題 a~zまでを表示

"""
a~zまでを表示
https://paiza.jp/works/mondai/loop_problems/loop_problems__print_alpha

問題
a~zのアルファベットを改行区切りで表示
"""

[print(chr(i)) for i in range(97, 123)]
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?