リストの各要素の前に文字列を出力し、それを新しい行に出力したい:
例:
test = ["aaa", "bee", "cee"]
print("hello, %s" % "\n".join(storageVolume))
これから得られるものは次のとおりです。
hello, aaa
bee
cee
私が欲しいのは:
hello, aaa
hello, bee
hello, cee
どんな助けでも大歓迎です。