TGTGInsighttelegram intelligenceLIVE / telegram public index
← Python Заметки

TGINSIGHT SIMILAR POSTS

Најди сличен содржај

Изворен канал @pythonotes · Post #418 · 9 мар.

Оператор pipe позволяет писать более компактный код, реализуя логику объединения данных (Union). Важно помнить, что его поведение зависит от контекста. Побитовые операции (логическое OR) result = 5 | 3 # 5 (0101) | 3 (0011) = 7 (0111) Самое главное - не путать с оператором or, это другое! Объединение множеств set_a = {1, 2, 3} set_b = {3, 4, 5} set_c = set_a | set_b # {1, 2, 3, 4, 5} set_c |= {5, 6} # {1, 2, 3, 4, 5, 6} Слияние словарей dict_1 = {"a": 1, "b": 2} dict_2 = {"b": 3, "c": 4} merged = dict_1 | dict_2 # {'a': 1, 'b': 3, 'c': 4} merged |= {"d": 5} # {'a': 1, 'b': 3, 'c': 4, 'd': 5} Аннотации типов, заменяет Union def process_data(value: int | str) -> None: print(value) Допустимо использовать в isinstance или issubclass isinstance(3, int | float) # True Паттерн-матчинг status_code = 404 match status_code: case 200 | 201 | 204: print("OK") case 400 | 404 | 500: print("ERROR") Для использования в своих классах требуется переопределить метод __or__ Так же нашел библиотеку pipe которая добавляет еще много возможностей. Рекомендую ознакомиться ;) #basic

Hashtags

Резултати

Пронајдени 4 слични објави

Пребарај: #mantlejourney

当前筛选 #mantlejourney清除筛选
TokenPocket

@tokenpocket_channel · Post #764 · 06.09.2023 г., 02:43

💥Only 3 days left! Ready to grab your share of the $10,000 $MNT Prize Pool? Claim your OAT on Galxe and take your prize seat! 👉https://galxe.com/TokenPocket/campaign/GCtvyUu2RJ #MantleJourney#TokenPocket 【Details】https://twitter.com/TokenPocket_TP/status/1699251368022987065 【Powered By】Crypto Box

TokenPocket

@tokenpocket_channel · Post #778 · 12.09.2023 г., 10:47

#MantleCampaign We got 8k participants in the past two weeks and exceeded 7k users who are eligible to get the $MNT! 🏆 Winner List ⬇️⬇️ https://docs.google.com/spreadsheets/d/1W9XGkL2nFj7t5UdQqrHafmHydn2GbfwaVpM7UlI_Q20/edit#gid=0 The rewards have been distributed and please check your #TokenPocket 0xMantle wallet address. 🚪Get your $MNT as the ticket and open the door of #MantleJourney! 🏞 Mint your MJSBT: http://journey.mantle.xyz Thank you once again for your active participation! Stay tuned for more exciting events in the future! 🔥 【Details】https://twitter.com/TokenPocket_TP/status/1701547387846627436 【Powered By】Crypto Box

TokenPocket

@tokenpocket_channel · Post #834 · 10.10.2023 г., 10:14

🆕 0xMantle Bridge now fully supports TokenPocket login, and the official bridge is also listed on the TokenPocket #Mantle Hot #DApp List! 👉https://bridge.mantle.xyz/ 🔥You can access Mantle Bridge with your TokenPocket wallet and enjoy the #MantleJourney! 👉https://extension.tokenpocket.pro/#/ 👉https://www.tokenpocket.pro/en/download/app #TokenPocket#MantleJourney 【Details】https://twitter.com/TokenPocket_TP/status/1711686131371413918 【Powered By】Crypto Box

TokenPocket

@tokenpocket_channel · Post #832 · 10.10.2023 г., 10:10

🆕 Mantle Bridge now fully supports TokenPocket login, and the official bridge is also listed on the TokenPocket #Mantle Hot #DApp List! 🔥You can access Mantle Bridge with your TokenPocket wallet and enjoy the #MantleJourney! 👉https://extension.tokenpocket.pro/#/ 👉https://www.tokenpocket.pro/en/download/app #TokenPocket#MantleJourney 【Details】https://twitter.com/TokenPocket_TP/status/1711685010049368156 【Powered By】Crypto Box