Skip to content
Sign UpLog In
Profile icon

beluga & hecker

@mintytree
Um hi? I'm Bhavyah Fav superhero : ms.marvel and spiderman fav villain : loki
  • How to Build the Worst Website

    Cover page
    Made with HTML, CSS, JS

    How to build the worst website

    Recent comments (1)
    UtkMcpe78
    UtkMcpe78
    8 months ago

    Lmbo why?

Repls
Community
mintytree
mintytree
published a Repl
8 months ago
0
How to Build the Worst Website
How to Build the Worst WebsiteHow to build the worst website
UtkMcpe78
UtkMcpe78
Lmbo why?8 months ago
mintytree
mintytree
published a Repl
8 months ago
4
Password Creator
Password CreatorNo more scratching your head for passwords! This program creates a simple but strong password you can remember.
iSymbol
iSymbol
You can use \n and not ```py print("") print("") ...8 months ago
iSymbol
iSymbol
```py from colorama import Fore as FORE print(FORE.LIGHTGREEN_EX + " Hi! This is a strong password creator that is easy to use and remember. Every day hackers guess other people's passwords so it is important to have a safe password. The passwords below are ranked on how popular these passwords are used.") print(f"Most common passwords include:{FORE.RED}") print("1. 123456") print("2. password") print("3. 12345678") print("4. 1234567") print("5. qwerty") print("6. 654321") print("7. 111111") print("8. 123123") print("9. 1234567890") print("10. Iloveyou") word = input(f"{FORE.LIGHTMAGENTA_EX}Please enter a short word or just a short word like book or marker. However I suggest you choose a word relating to the website, so you can remember your password easily.{FORE.WHITE}") Uppercase = ["A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "M", "O","P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"] numbers = ["1", "2", "3", "4", "5", "6", "7", "8", "9", "0"] symbols = [ "!","@","#","$","%",] import random letter = random.choice(Uppercase) number1 = random.choice(numbers) number2 = random.choice(numbers) symbol1 = random.choice(symbols) symbol2 = random.choice(symbols) password = letter + word + number1 + number2 + symbol1 + symbol2 print(f"{FORE.LIGHTBLUE_EX}Your password is ", password, ". Thank you for using password creator. Please come again!") ```8 months ago