Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Python3.12のWhat's New から f-string の変更だけ読んでみた

2323
April 14, 2024

Python3.12のWhat's New から f-string の変更だけ読んでみた

2024/04/14 に開催された、PyLadies Tokyo 入学式のLTで発表した際の資料です。

https://pyladies-tokyo.connpass.com/event/314008/

2323

April 14, 2024
Tweet

Other Decks in Programming

Transcript

  1. 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翻訳したもの
  2. 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翻訳したもの 🐍 < ええで
  3. 参考文献 - 2. 字句解析 — Python 3.12.2 ドキュメント - 2024/04/10

    閲覧。 - 2. 字句解析 — Python 3.11.8 ドキュメント - 2024/04/10 閲覧。 - いらすとや