1. Список говнокодов пользователя Copy-Paste

    Всего: 22

  2. Python / Говнокод #10552

    −105

    1. 1
    2. 2
    3. 3
    4. 4
    5. 5
    6. 6
    7. 7
    8. 8
    if True:
            if False | True:
                    if True:
                            if True | False:
                                    for x in xrange(1,100):
                                            for y in xrange(1,100):
                                                    break
                                                    print "Easter Egg!"

    Copy-Paste, 04 Июня 2012

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

    −107

    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
    # -*- coding: cp866 -*-
    import datetime
    import time
    currentHour = datetime.datetime.now().hour
    name = str(raw_input("Ваше имя: "))
    if currentHour < 6:
       print "Спокойной ночи,",name+"!"
    elif currentHour < 12:
       print "Доброе утро,",name+"!"
    elif currentHour < 18:
       print "Добрый день,",name+"!"
    elif currentHour < 24:
       print "Добрый вечер,",name+"!"
    time.sleep(5)

    It's python time!

    Copy-Paste, 04 Июня 2012

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