Python etc / new year 2021-2022

new year 2021-2022

channel = '@pythonetc' print(f'Happy new Year, {channel}!')

# there are our top posts from 2021 by_likes = { 'join-lists': 236, 'dev-mode': 181, 'is-warning': 170, 'str-concat': 166, 'class-scope': 149, } by_forwards = { 'class-scope': 111, 'dev-mode': 53, 'join-lists': 50, 'str-concat': 44, 'eval-strategy': 36, } by_views = { 'path': 7_736, 'dev-mode': 7_113, 'immutable': 6_757, 'class-scope': 6_739, 'sre-parse': 6_661, }

from datetime import date from textwrap import dedent if date.today().year == 2022: print(dedent(""" The season 2.6 is coming! This is what awaits: """)) print( 'native telegram reactions instead of buttons', 'deep dive into garbage collection, generators, and coroutines', 'the season is still ran by @orsinium', 'as always, guest posts and donations are welcome', sep='\n', )

print('See you next year \N{Sparkling Heart}!')