songs = ['Take me back to Eden', 'Alkaline',
'Ascensionism']
f"This is the playlist: {",".join(songs)}"
Python 3.12 では、
次のようなことができるようになりました。
What’s New In Python 3.12 の文をGoogle翻訳したもの
Slide 35
Slide 35 text
songs = ['Take me back to Eden', 'Alkaline',
'Ascensionism']
f"This is the playlist: {",".join(songs)}"
# 'This is the playlist: Take me back to Eden,
Alkaline, Ascensionism'
What’s New In Python 3.12 の文をGoogle翻訳したもの
🐍 < ええで