JustPaste
HomeCategoriesAboutDonateContactTerms of UsePrivacy Policy
JustPaste

Free online notepad — write and share instantly

Navigate

  • Home
  • Timeline
  • Categories

Info

  • About
  • Donate
  • Contact

Legal

  • Terms of Use
  • Privacy Policy

© 2026 JustPaste.app. All rights reserved.

Made with ♥ by JustPaste

Untitled Page | JustPaste.app
4 months ago47 views
loosers = {}

def lib():
    key = input("введите юз: ").strip()
    interes = input("введите интересы через запятую: ")

    interes_list = [v.strip() for v in interes.split(",")]

    if key in loosers:
        loosers[key].extend(interes_list)
    else:
        loosers[key] = interes_list


while True:
    lib()
    print(loosers)

    stop = input("Продолжить? (да/нет): ").strip().lower()
    if stop == "нет":
        break

⚠️Content was pasted as plain text and auto-formatted as a code block. Use the Code Block button in the editor for proper formatting.

← Back to timeline