Re: Python 3.10's cool new match statement

2022-04-02 Thread Edward K. Ream
On Fri, Apr 1, 2022 at 8:08 PM Zoom.Quiet wrote: > super, guido's new tutorial > Glad you like it. For the record, the tutorial is PEP 636 , not 635 as I incorrectly said. Appendix A is a quick summary. Edward

Re: Python 3.10's cool new match statement

2022-04-01 Thread Zoom.Quiet
super, guido's new tutorial Edward K. Ream 于2022年4月1日周五 21:39写道: > > Python 3.10 supports the new match statement. Don't panic, match is a "soft" > keyword. > > Imo, this is the coolest addition to python since acyncio: > > - Pep 634 describes the feature, > - Pep 635 gives the rationale, > - P