% python3 Python 3.7.9 (default, Feb 28 2021, 01:41:41) ... >>> who = "World" >>> text = f'Hello {who}' >>> print( text ) Hello World >>> text = f'Hello {{who}}' >>> print( text ) Hello {who}
セコメントをする