1
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レベルアップ問題集】標準入力メニュー/半角スペース区切りでの文字列の分割

Last updated at Posted at 2023-05-14

Paiza問題集

Pythonで回答

標準入力メニュー/半角スペース区切りでの文字列の分割

Step1 2つの文字列の半角スペース区切りでの分割

"""
2つの文字列の半角スペース区切りでの分割
https://paiza.jp/works/mondai/stdin_primer/stdin_primer__split_string_step1
"""

# Hello paiza2行で表示
string = 'Hello paiza'

# スペースで区切って2行で表示
str1, str2 = string.split(' ')
print(str1)
print(str2)

Step2 3つの文字列の半角スペース区切りでの分割

"""
3つの文字列の半角スペース区切りでの分割
https://paiza.jp/works/mondai/stdin_primer/stdin_primer__split_string_step2
"""

string = 'He likes paiza'

# 半角スペースで文字を区切る
str1, str2, str3 = string.split(' ')

# 区切った文字を表示
print(str1)
print(str2)
print(str3)

Step3 5つの文字列の半角スペース区切りでの分割

"""
5つの文字列の半角スペース区切りでの分割
https://paiza.jp/works/mondai/stdin_primer/stdin_primer__split_string_boss
"""

string = 'one two three four five'

# スペースで区切って表示
for i in string.split(' '):
    print(i)
1
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
1
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?