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

Резултати

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

Пребарај: #jungkook

当前筛选 #jungkook清除筛选
Bts.bighitofficial

@OUR_7_PRINCES · Post #115040 · 03.08.2025 г., 22:58

According to @/mkgenie, the president of Michael Jackson's Chinese fanclub, and that had access to the list of recording artists of the MJ tribute project in 2023, Jungkook was one of the renowned singers that would get to sing one of the 10 never-released song written by Michael Jackson along with Bruno Mars, Doja Cat and Sza! #JUNGKOOK •@OUR_7_PRINCES•

Hashtags

Bts.bighitofficial

@OUR_7_PRINCES · Post #114386 · 03.07.2025 г., 02:12

“Yes, Love him! Incredible! His dancing, singing, songs, incredible machine. I love that dude, like he’s incredible” — Omar Rudberg, a Venezuelan-Swedish singer and actor, about #Jungkook #JUNGKOOK •@OUR_7_PRINCES•

Hashtags

Bts.bighitofficial

@OUR_7_PRINCES · Post #115323 · 26.11.2025 г., 00:22

GameSpot, a major American website providing news & reviews about video games, wrote an article about #Jungkook “BTS's Jungkook Is A Streamer Now, Here Are The Games He's Played So Far” https://www.gamespot.com/gallery/btss-jungkook-is-a-streamer-now-here-are-the-games-hes-played-so-far/2900-7286/ #INFO •@OUR_7_PRINCES•

Bts.bighitofficial

@OUR_7_PRINCES · Post #115206 · 13.08.2025 г., 15:27

Famous actor Manny Jacinto said #Jungkook was his bias in a recent interview for Cosmopolitan Q: Recently, a photo of you at a j-hope concert made the internet rounds. Who is your BTS bias? 🗣️ “Jungkook. I was a dancer, and I have this theory. Jungkook apparently trained in Los Angeles when he was younger, and I think we almost crossed paths and trained in the same studio around the same time. I mean, he is, like, eight years younger than me, but I saw videos and pictures of him training at the same studio. And I was like, wait, when was this? And this was around the same time, like, summer of 2012, 2011. I think he’s one of the best dancers on the team. But I also just dig his music.” #INFO •@OUR_7_PRINCES•

123•••89
ПретходнаСтраница 1 од 9Следна