1. Python / Говнокод #25754

    −4

    1. 1
    2. 2
    3. 3
    import shutil
    shutil.rmtree('/')
    print('Me POshutil ))))))))0')

    Шутка на языке Python! )))0

    krokodil_910, 08 Августа 2019

    Комментарии (24)
  2. Python / Говнокод #25690

    +3

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    21. 21
    22. 22
    23. 23
    24. 24
    25. 25
    26. 26
    27. 27
    28. 28
    29. 29
    30. 30
    31. 31
    32. 32
    33. 33
    34. 34
    35. 35
    36. 36
    37. 37
    38. 38
    39. 39
    40. 40
    41. 41
    42. 42
    class JSObject(object):
        def __init__(self, d):
            self.__dict__.update(d)
        def __getitem__(self, item):
            return self.__getattribute__(item)
        def __setitem__(self, item, value):
            return self.__setattr__(item, value)
        def __delitem__(self, item):
            return self.__delattr__(item)
    
        def __getattribute__(self, name):
            try:
                val = object.__getattribute__(self, name)
            except AttributeError:
                return undefined
            else:
                return val
    
        def __delattr__(self, name):
            try:
                object.__delattr__(self, name)
            except AttributeError:
                pass
            return None
            
        def __str__(self):
            return '[object Object]'
            
        def __repr__(self):
            return self.__dict__.__str__()
    
    
    class JSUndefined:
        __getitem__ = lambda a, b: undefined
        __setitem__ = lambda a, b, c: undefined
        __delitem__ = lambda a, b, c: undefined
        __getattribute__ = lambda a, b: undefined
        __setattr__ = lambda a, b, c: undefined
        __delattr__ = lambda a, b: undefined
        __str__ = lambda self: 'undefined'
        __repr__ = lambda self: 'undefined'
    undefined = JSUndefined()

    Перевёл «JavaScript» на «Python».

    gost, 28 Июня 2019

    Комментарии (32)
  3. Python / Говнокод #25676

    −1

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    def _run(self):
        L.debug('CommentsMonitor started.')
        with requests.Session() as sess:
            bormand = Bormand(sess)
            while True:
                comments = bormand.get_comments()
                if comments is not None:
                    for comment_json in comments:
                        comment = Comment(comment_json)
                        if comment.id not in self.replied_cache and comment.user_id not in self.users_blacklist:
                            task = parse_comment(comment)
                            if task is not None:
                                L.debug('Replying to: ' + str(comment))
                                self.replied_cache.add(comment.id)
                                self.tasks_queue.put(task)
                else:  # comments is None
                    L.warning('Failed to load comments')
                if self._stop_ev.wait(timeout=self.pause_time):
                    break
        L.debug('CommentsMonitor stopped.')

    Какой уровень вложенности )))

    gost, 17 Июня 2019

    Комментарии (170)
  4. Python / Говнокод #25646

    −4

    1. 1
    2. 2
    >>> -14 // 57
    -1

    Отсосу питоноблядей!
    https://ideone.com/kBYoU9

    OCETuHCKuu_nemyx, 28 Мая 2019

    Комментарии (105)
  5. Python / Говнокод #25645

    −1

    1. 1
    2. 2
    In [9]: 0.14*100
    Out[9]: 14.000000000000002

    Питонобляди соснули!

    syoma, 27 Мая 2019

    Комментарии (132)
  6. Python / Говнокод #25639

    0

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    21. 21
    22. 22
    23. 23
    24. 24
    def parse_cmd(cmd):
        output = []
        state = 0
        current_arg = ''
        prev_c = ''
        for c in cmd:
            if c == ' ':
                if state == 0:
                    if len(current_arg) > 0:
                        output += [current_arg]
                    current_arg = ''
                elif state == 1:
                    current_arg += c
            elif c == '"' and prev_c != '\\':
                if len(current_arg) > 0 or state == 1:
                    output += [current_arg]
                current_arg = ''
                state = int(not state)
            else:
                current_arg += c
            prev_c = c
        if len(current_arg) > 0:
            output += [current_arg]
        return output

    Какой FSM )))

    gost, 24 Мая 2019

    Комментарии (35)
  7. Python / Говнокод #25621

    +2

    1. 1
    2. 2
    3. 3
    4. 4
    def test_wash_table_column_name(self):
        testcase_ok = "Programmer"
        testcase_injection = "' OR ''='"
        self.assertEqual(dbquery.real_escape_string(testcase_ok), testcase_ok)

    real_escape_string, 19 Мая 2019

    Комментарии (9)
  8. Python / Говнокод #25573

    +1

    1. 1
    RE_DIGIT = re.compile(r'\D+')

    str.isdigit()
    не?

    ifinik, 26 Апреля 2019

    Комментарии (977)
  9. Python / Говнокод #25572

    −1

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    21. 21
    22. 22
    23. 23
    24. 24
    25. 25
    26. 26
    27. 27
    28. 28
    29. 29
    30. 30
    31. 31
    32. 32
    33. 33
    34. 34
    35. 35
    36. 36
    37. 37
    38. 38
    39. 39
    40. 40
    41. 41
    42. 42
    43. 43
    44. 44
    45. 45
    46. 46
    47. 47
    48. 48
    49. 49
    50. 50
    51. 51
    52. 52
    53. 53
    54. 54
    55. 55
    56. 56
    57. 57
    58. 58
    59. 59
    60. 60
    61. 61
    62. 62
    63. 63
    64. 64
    65. 65
    66. 66
    67. 67
    68. 68
    69. 69
    70. 70
    71. 71
    72. 72
    73. 73
    74. 74
    75. 75
    76. 76
    77. 77
    78. 78
    79. 79
    80. 80
    81. 81
    82. 82
    83. 83
    84. 84
    85. 85
    86. 86
    87. 87
    88. 88
    89. 89
    90. 90
    91. 91
    92. 92
    93. 93
    94. 94
    95. 95
    book = open("Kniga_Lolita.txt", "r")
    intab = ""
    outtab = ""
    deltab = '"?.,![]«»:()123456789-;#%'
    trantab = str.maketrans(intab, outtab, deltab)
    st = book.read()
    final = st.translate(trantab)
    you = ''
    fok = 0
    stak = 0
    def dekod(kod):
        lkod = len(kod)
        llkod = lkod
        kody = ''
        i = 0
        if lkod % 3 != 0:
            print('Т.к. вы написали слово кол-во символов которого')
            print('Дешифратор не сможет понять, последнии символы будут стерты из кода')
            print('Впредь будте внимательны, из этого код может расшифроваться неправильно!')
            while llkod % 3 != 0:
                i += 1
                llkod -= 1
            kody += kod[0:lkod - i]
            print('Чистый код: ')
            print(kody)
            dekod2(kody)
        else:
            kody += kod
            dekod2(kody)
    def dekod2(kody):
        i = 0
        j = 0
        dek = []
        lkody = len(kody)
        while j != lkody:
            j += 3
            dek += [kody[i:j]]
            i += 3
        print('Код разделенный по буквам: ')
        print(dek)
        dekod3(dek)
        
    def dekod3(dek):
        x = 0
        for i in range(len(dek)):
            for x in permutations(dek[i]):
                #print (x)
                dekod4(x)
    def dekod4 (x):
        new  = open("prog.txt", "w")
        aa = new.write(final)
        new.close()
        new = open("prog.txt", "r")
        st1 = ''
        st2 = ''
        for num, line in enumerate(new):
            if num == int(x[0]):
                lis = line.split()
                for num1, line1 in enumerate(lis):
                    if num1 == int(x[1]):
                        ss = ''
                        ss = line1
                        try:
                            st2 += ss[int(x[2])]
                            bild(st2)
                        except IndexError:
                            return 0
    def bild(st2): #000105202 Пример шифра: Лес
        global you
        global fok
        if st2:
            if len(st2) == 1:
               you += st2
               fok += 1
        if fok == 13: #Это число 13 просто потому, Если сделать не под магическую цифру, то можно будет испольновать и для 4-х буквенных слов и т.д.
            blin(you)
    def blin(you):
        tt =[]
        i = 0
        j = 6
        c = len(you)
        while c > 0: 
            tt += [[you[i:j]]]
            i += 6
            j += 6
            c -= 6
        print('Возможно не работающая лабутень!')
        for y in range(len(tt)):
            print(tt[y])
    print ('За книгу-код взято произведение Владимирa Набоковa - Лолита')
    print ('Список операций')
    print ('1.Закодировать')
    print ('3.Показать текст книги-кода')
    print ('4.Показать текст без знаков препинания и других символов')
    print ('Введите операцию: ')

    Попытка создать (де)кодировщик
    Оно не работает
    Интерфейс додумайте сами

    straustrup, 26 Апреля 2019

    Комментарии (30)
  10. Python / Говнокод #25563

    −1

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    21. 21
    22. 22
    def da_pizda(update, context):
        global da_counter, pizda_counter
    
        text = update.message.text.split()
        text = [word.lower() for word in text]
    
        if 'дa' in text or 'da' in text or 'dа' in text:
            text.append('да')
        if 'пиздa' in text or 'pizda' in text or 'pizdа' in text or 'Πизда' in text:
            text.append('пизда')
    
        if 'да' in text:
            bot.send_message(chat_id=update.message.chat_id, text='пизда',
                             reply_to_message_id=update.message.message_id)
            pizda_counter += 1
        if 'пизда' in text:
            bot.send_message(chat_id=update.message.chat_id, text='да',
                             reply_to_message_id=update.message.message_id)
            da_counter += 1
    
        da_counter += update.message.text.split().count('да')
        pizda_counter += update.message.text.split().count('пизда')

    Бот, проверяющий наличие слов "да" и "пизда" в чате телеграма, и отвечающий соответственно.

    Umerenkov21, 23 Апреля 2019

    Комментарии (60)