@dasturlash_hayoti · Post #2986 · 08.01.2024 г., 10:16
#tester Tester loyihani tekshirish jarayonida 💥😅 💻@dasturlash_hayoti— dasturchilar va dasturlash hayotini yoritib boradigan loyiha!
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
Пребарај: #tester
@dasturlash_hayoti · Post #2986 · 08.01.2024 г., 10:16
#tester Tester loyihani tekshirish jarayonida 💥😅 💻@dasturlash_hayoti— dasturchilar va dasturlash hayotini yoritib boradigan loyiha!
Hashtags
@dasturlash_hayoti · Post #4181 · 17.04.2026 г., 16:50
Formalarni qo'lda to'ldirib asabi buziladigan dasturchi va testerlar uchun super topilma! Sayt yasagandan keyin uni test qilish jarayonida ism, email, raqam, parol va boshqa qatorlarni qayta-qayta o'zingiz to'ldirishga vaqt sarflab charchadingizmi? Unda Fake Filler nomli Chrome kengaytmasi (plagini) ayni siz qidirgan narsa! U bitta klik bilan har qanday veb-shakllarni tasodifiy (random) ma'lumotlar bilan avtomatik to'ldirib tashlaydi. Bu esa xatoliklarni qidirish va test jarayonini ancha tezlashtirib, asabingizni asraydi. 🚀 ➡️Kengaytmani o'rnatish:Havola orqali o'ting (Chrome Web Store) Do'stlar va tanish testerlarga yuborib qo'yamiz, vaqtlarini tejashsin! #foydali#dasturlash#tester 💻@dasturlash_hayoti— dasturchilar hayoti va IT memlari aralash kanal😉
Hashtags
@djangoproject · Post #522 · 13.12.2017 г., 20:10
https://pythonsecret.blogspot.de/ Secret of Python How to Become a Penetration #Tester with Python How to Create Undetectable #Backdoor Using Python How to #Crack#SSH#Password Using Python How to Connect #Window Machine to #Linux Machine Using Python via #SSH How to Connect #Client Machine via #SSH using Python How to Install #Kivy on Window 10