リストの要素を横並びで出力する
"".join()の使い方
"要素の間に入れる文字".join(リスト)
※リストの要素がint型だと使えない
l = ["a", "b", "c", "d"]
print(",".join(l))
# a,b,c,d
print("".join(l))
# abcd
print(" ".join(l))
# a b c d
リストの要素がint型の場合
str型に変換してから"".join()を使う
l = [1, 2, 3, 4]
l = [str(x) for x in l]
print(" ".join(l))
# 1 2 3 4
Author And Source
この問題について(リストの要素を横並びで出力する), 我々は、より多くの情報をここで見つけました https://qiita.com/ErinaYoshida/items/af0b4aeef258afb8e15f著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .