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

Резултати

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

Пребарај: #realpotos

当前筛选 #realpotos清除筛选
AI match predictions

@ai_match_prediction · Post #11833 · 01.05.2026 г., 13:06

Bolivia Primera División🇧🇴 2026-05-01 19:00 UTC San Antonio Bulo Bulo vs. Independiente Petrolero Predicted outcome: Independiente Petrolero❌ Predicted score: 2:3 Actual: Draw 2:2 #SanAntonioBuloBulo#IndependientePetrolero 2026-05-01 21:15 UTC Real Potosí vs. Real Oruro Predicted outcome: Real Potosí❌ Predicted score: 2:1 Actual: Real Oruro 1:2 #RealPotos#RealOruro #Football#BoliviaPrimeraDivisión

AI match predictions

@ai_match_prediction · Post #12031 · 10.05.2026 г., 13:05

Bolivia Primera División🇧🇴 2026-05-10 19:00 UTC Independiente Petrolero vs. Always Ready Predicted outcome: Always Ready❌ Predicted score: 1:2 Actual: Draw 0:0 #IndependientePetrolero#AlwaysReady 2026-05-10 21:15 UTC The Strongest vs. Real Potosí Predicted outcome: The Strongest❌ Predicted score: 2:1 Actual: Draw 0:0 #TheStrongest#RealPotos 2026-05-10 23:30 UTC Blooming vs. Bolívar Predicted outcome: Bolívar❌ Predicted score: 2:3 Actual: Draw 0:0 #Blooming#Bolvar #Football#BoliviaPrimeraDivisión

AI match predictions

@ai_match_prediction · Post #11667 · 22.04.2026 г., 13:05

Bolivia Primera División🇧🇴 2026-04-22 19:00 UTC Always Ready vs. Oriente Petrolero Predicted outcome: Always Ready✅ Predicted score: 4:0 Actual: Always Ready 1:0 #AlwaysReady#OrientePetrolero 2026-04-22 22:00 UTC Real Potosí vs. Guabirá Predicted outcome: Draw❌ Predicted score: 1:1 Actual: Real Potosí 3:0 #RealPotos#Guabirá 2026-04-23 00:00 UTC Blooming vs. Nacional Potosí Predicted outcome: Draw❌ Predicted score: 2:2 Actual: Blooming 2:1 #Blooming#NacionalPotos #Football#BoliviaPrimeraDivisión

AI match predictions

@ai_match_prediction · Post #11295 · 04.04.2026 г., 13:05

Bolivia Primera División🇧🇴 2026-04-04 19:00 UTC Always Ready vs. Real Tomayapo Predicted outcome: Always Ready✅ Predicted score: 3:1 Actual: Always Ready 4:0 #AlwaysReady#RealTomayapo 2026-04-04 21:15 UTC Real Potosí vs. Aurora Predicted outcome: Real Potosí❌ Predicted score: 2:1 Actual: Draw 0:0 #RealPotos#Aurora 2026-04-04 23:30 UTC San Antonio Bulo Bulo vs. Oriente Petrolero Predicted outcome: San Antonio Bulo Bulo✅ Predicted score: 3:1 Actual: San Antonio Bulo Bulo 2:0 #SanAntonioBuloBulo#OrientePetrolero #Football#BoliviaPrimeraDivisión

AI match predictions

@ai_match_prediction · Post #11770 · 26.04.2026 г., 13:05

Bolivia Primera División🇧🇴 2026-04-26 19:00 UTC Real Oruro vs. The Strongest Predicted outcome: Real Oruro❌ Predicted score: 3:2 Actual: The Strongest 2:3 #RealOruro#TheStrongest 2026-04-26 21:15 UTC Bolívar vs. Real Tomayapo Predicted outcome: Bolívar✅ Predicted score: 3:1 Actual: Bolívar 6:0 #Bolvar#RealTomayapo 2026-04-26 23:30 UTC Oriente Petrolero vs. Real Potosí Predicted outcome: Real Potosí❌ Predicted score: 1:2 Actual: Oriente Petrolero 2:0 #OrientePetrolero#RealPotos #Football#BoliviaPrimeraDivisión