#文字列の場合
#やりたいこと
#'hello' ⇒ ['h','e','l','l','o']
a = 'hello'
print(list(a))
実行結果は以下のようになる
['h', 'e', 'l', 'l', 'o']
#数値の場合
b = 123456789
print(list(str(b)))
実行結果は以下のようになる
['1', '2', '3', '4', '5', '6', '7', '8', '9']
Go to list of users who liked
More than 3 years have passed since last update.
#文字列の場合
#やりたいこと
#'hello' ⇒ ['h','e','l','l','o']
a = 'hello'
print(list(a))
実行結果は以下のようになる
['h', 'e', 'l', 'l', 'o']
#数値の場合
b = 123456789
print(list(str(b)))
実行結果は以下のようになる
['1', '2', '3', '4', '5', '6', '7', '8', '9']
Register as a new user and use Qiita more conveniently
Go to list of users who liked