PYTHONICAI Telegram 1083
Python 3.9 got released and it comes with new cool features:

1. Dictionary union:

a = {1: 'a', 2: 'b', 3: 'c'}
b = {4: 'd', 5: 'e'}
c = a | b
print(c)

[Out]: {1: 'a', 2: 'b', 3: 'c', 4: 'd', 5: 'e'}

2. Type hinting. Allows you to write:

def sum_dict(var: dict[str, int]) -> int:
return sum(var[key] for key in var)

3. New string methods. Two new string methods for removing prefixes and suffixes have been added.

"Hello world".removeprefix("He")

[Out]: "llo world"

4. Python 3.9 uses a new parser, based on PEG instead of LL(1). Python users are not affected, but parser improvements would help to develop new language features faster.

Link

#python

@pythonicAi



tgoop.com/pythonicAI/1083
Create:
Last Update:

Python 3.9 got released and it comes with new cool features:

1. Dictionary union:

a = {1: 'a', 2: 'b', 3: 'c'}
b = {4: 'd', 5: 'e'}
c = a | b
print(c)

[Out]: {1: 'a', 2: 'b', 3: 'c', 4: 'd', 5: 'e'}

2. Type hinting. Allows you to write:

def sum_dict(var: dict[str, int]) -> int:
return sum(var[key] for key in var)

3. New string methods. Two new string methods for removing prefixes and suffixes have been added.

"Hello world".removeprefix("He")

[Out]: "llo world"

4. Python 3.9 uses a new parser, based on PEG instead of LL(1). Python users are not affected, but parser improvements would help to develop new language features faster.

Link

#python

@pythonicAi

BY Pythonic AI


Share with your friend now:
tgoop.com/pythonicAI/1083

View MORE
Open in Telegram


Telegram News

Date: |

You can invite up to 200 people from your contacts to join your channel as the next step. Select the users you want to add and click “Invite.” You can skip this step altogether. Just at this time, Bitcoin and the broader crypto market have dropped to new 2022 lows. The Bitcoin price has tanked 10 percent dropping to $20,000. On the other hand, the altcoin space is witnessing even more brutal correction. Bitcoin has dropped nearly 60 percent year-to-date and more than 70 percent since its all-time high in November 2021. With Bitcoin down 30% in the past week, some crypto traders have taken to Telegram to “voice” their feelings. fire bomb molotov November 18 Dylan Hollingsworth yau ma tei How to Create a Private or Public Channel on Telegram?
from us


Telegram Pythonic AI
FROM American