@fporn · Post #1473 · 01.10.2019 г., 11:36
Garlic Dill Sunflower Dip #Vegan
Hashtags
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
Пребарај: #vegan
@fporn · Post #1473 · 01.10.2019 г., 11:36
Garlic Dill Sunflower Dip #Vegan
Hashtags
@fporn · Post #1453 · 15.04.2019 г., 11:51
Rosemary Paleo Crackers with Bob's Red Mill Cassava Flour #Vegan
Hashtags
@fporn · Post #1442 · 29.01.2019 г., 15:59
No Oil Crispy Roasted Potatoes #Vegan
Hashtags
@fporn · Post #1399 · 09.10.2018 г., 11:54
Buddha Bowls #Vegan
Hashtags
@fporn · Post #1326 · 10.04.2018 г., 03:24
#Vegan @fporn
Hashtags
@fporn · Post #1303 · 13.03.2018 г., 19:53
#Vegan @fporn
Hashtags
@fporn · Post #1279 · 06.02.2018 г., 21:28
#Vegan @fporn
Hashtags
@fporn · Post #1263 · 22.01.2018 г., 21:13
Meal Prep Moroccan Chickpea, Sweet Potato, and Cauliflower Bowls #Vegan
Hashtags
@fporn · Post #1218 · 16.12.2017 г., 12:34
#Vegan @fporn
Hashtags
@fporn · Post #1214 · 13.12.2017 г., 19:03
Regular and Sweet Potato Fries with Guacamole #Vegan
Hashtags
@eatNcook · Post #1194 · 04.11.2023 г., 21:17
Arabic salad🥗 ARABIC SALAD/ SHIRAZI SALAD/ CHOPPED VEGGIE SALAD so simple, yet so delicious! This is my most-eaten salad at home - it goes with everything from #vegan omelette to scramble or hummus The most important thing is to chop as thinly as possible! For some reason it just make it taste even better ' anyone agrees? 2 Persian cucumbers, diced 3 ripe tomatoes, diced 1 medium red onion, diced 4 stalks spring onion, sliced thinly 2 Tbsp parsley, chopped Dressing: 2 Tbsp olive oil Tbsp (30ml) lemon juice 1/2 tsp salt & pepper, to taste 1/2 tsp ground cumin -•-Method-•- Sharpen your knife and cut your veggies very thinly. Place in a bowl, add the dressing and combine.
Hashtags
@fporn · Post #1175 · 16.11.2017 г., 11:43
Garlic Roasted Carrots #Vegan
Hashtags