SlideShare a Scribd company logo
Python 3.10の新機能を
俯瞰してみる
Python駿河 勉強会 #28 ~真夏のLT大会~
2021/08/28@オンライン
あっきー
自己紹介
● 株式会社KYOSO勤務
○ IoTのワンストップサービスなど
● 業務では主に、AWS、SORACOM、
AIカメラを使ったサービスを提供
● バックエンド、フロントエンド両方好き
● 推し言語はPythonとTypeScript
● VTuber好き、Dead by Daylight好き
AWS LambdaにPython 3.9来たよー🎉
本日お話しする内容
先日Python 3.10 RCが公開されたのでその内容をざっくりとみていきたいと思いま
す
発表時間が5分なので駆け足で進めますのであしからず
https://docs.python.org/3.10/whatsnew/3.10.html
目次
https://docs.python.org/3.10/whatsnew/3.10.html
Structural Pattern Matching
● PEP 634, Structural Pattern Matching: Specification
● PEP 635, Structural Pattern Matching: Motivation and Rationale
● PEP 636, Structural Pattern Matching: Tutorial
パターンマッチという新しい文法が追加された
これまでもIF,ELIF,ELSEを用いて同様のことが実現可能だったが、よりわかりやすく
記述することが可能になった
Structural Pattern Matching
従来の記法 パターンマッチ使った場合
Parenthesized context managers
● bpo-12782, Parenthesized context managers are now officially allowed.
複数のファイルをオープンしたいときなどに使うwith、かっこを使ってまとめること
ができるようになったよ
じつは3.9でも動いていたけど公式採用されたよ
Parenthesized context managers
従来の記法 新しい記法
Add Optional Length-Checking To zip
● PEP 618, Add Optional Length-Checking To zip
ZIP関数使うときはほとんどが引数の長さが同じ
逆に長さが異なっている場合に発生する不具合の特定が非常に困難なので何と
かしたい
ということで、引数の長さをチェックするstrictフラグ追加したよ
Add Optional Length-Checking To zip
Add Optional Length-Checking To zip
Precise line numbers for debugging and other
tools
● PEP 626, Precise line numbers for debugging and other tools.
これまでデバッガツールなどで表示される行番号が想定と異なる場合があった
が、正確な行番号が表示されるように修正
行番号を取得するf_linenoオブジェクトの動作を改善???
※これに関しては正確に内容が理解できなかったので間違ってたらすみませ
ん。。。。
Allow writing union types as X | Y
● PEP 604, Allow writing union types as X | Y
Union[X, Y] を X | Y って書けるようにしました
Allow writing union types as X | Y
従来の記法
新しい記法
Parameter Specification Variables
● PEP 612, Parameter Specification Variables
typingにParamSpecを追加しました。
デコレータ等でより詳細な型指定ができます。
詳細な解説をすると時間超えそうなので省略、、、
TypeAlias
● PEP 613: TypeAlias
typingにTypeAlias追加しました

More Related Content

PDF
mruby/c in TokyoRubyKaigi#11
PDF
KyotoLT_Online_27.pdf
PDF
はんなりPython #45
PDF
KyotoLT(Online) 第26回
PDF
AppSync導入のすすめ
PDF
みんなのPython勉強会#62
PDF
はんなりpython#32
PPTX
Hannari python#27
mruby/c in TokyoRubyKaigi#11
KyotoLT_Online_27.pdf
はんなりPython #45
KyotoLT(Online) 第26回
AppSync導入のすすめ
みんなのPython勉強会#62
はんなりpython#32
Hannari python#27

Recently uploaded (20)

PDF
The CXO Playbook 2025 – Future-Ready Strategies for C-Suite Leaders Cerebrai...
PDF
BMEC211 - INTRODUCTION TO MECHATRONICS-1.pdf
PDF
Digital Logic Computer Design lecture notes
PPT
Mechanical Engineering MATERIALS Selection
PPTX
MET 305 2019 SCHEME MODULE 2 COMPLETE.pptx
PPTX
Construction Project Organization Group 2.pptx
PDF
PPT on Performance Review to get promotions
PDF
TFEC-4-2020-Design-Guide-for-Timber-Roof-Trusses.pdf
PPTX
Recipes for Real Time Voice AI WebRTC, SLMs and Open Source Software.pptx
PPTX
Internet of Things (IOT) - A guide to understanding
PPTX
bas. eng. economics group 4 presentation 1.pptx
PPTX
Geodesy 1.pptx...............................................
PDF
Operating System & Kernel Study Guide-1 - converted.pdf
PPTX
CYBER-CRIMES AND SECURITY A guide to understanding
PPTX
CH1 Production IntroductoryConcepts.pptx
PPTX
Welding lecture in detail for understanding
PPTX
UNIT-1 - COAL BASED THERMAL POWER PLANTS
PPTX
MCN 401 KTU-2019-PPE KITS-MODULE 2.pptx
PPTX
OOP with Java - Java Introduction (Basics)
PDF
PRIZ Academy - 9 Windows Thinking Where to Invest Today to Win Tomorrow.pdf
The CXO Playbook 2025 – Future-Ready Strategies for C-Suite Leaders Cerebrai...
BMEC211 - INTRODUCTION TO MECHATRONICS-1.pdf
Digital Logic Computer Design lecture notes
Mechanical Engineering MATERIALS Selection
MET 305 2019 SCHEME MODULE 2 COMPLETE.pptx
Construction Project Organization Group 2.pptx
PPT on Performance Review to get promotions
TFEC-4-2020-Design-Guide-for-Timber-Roof-Trusses.pdf
Recipes for Real Time Voice AI WebRTC, SLMs and Open Source Software.pptx
Internet of Things (IOT) - A guide to understanding
bas. eng. economics group 4 presentation 1.pptx
Geodesy 1.pptx...............................................
Operating System & Kernel Study Guide-1 - converted.pdf
CYBER-CRIMES AND SECURITY A guide to understanding
CH1 Production IntroductoryConcepts.pptx
Welding lecture in detail for understanding
UNIT-1 - COAL BASED THERMAL POWER PLANTS
MCN 401 KTU-2019-PPE KITS-MODULE 2.pptx
OOP with Java - Java Introduction (Basics)
PRIZ Academy - 9 Windows Thinking Where to Invest Today to Win Tomorrow.pdf
Ad
Ad

Python 3.10の新機能を 俯瞰してみる