Pinned Loading
-
Password Picker will enable you to c...
Password Picker will enable you to create strong passwords by combining words, numbers, and characters. When you run the program, it will create a new password and show it on the screen. You can ask it to keep creating new passwords until you find one you like. 1import random
2import string
3adjectives = ['sleePy', 'sloW', 'Smelly', 'wEt', 'fAt', 'Red', 'oranGe', 'yEllow', 'greeN', 'bLue', 'Purple',
4'fluffy', 'white', 'proud', 'brave']
5nouns = ['Apple', 'dInosaur', 'baLL', 'toasteR', 'goaT', 'dragoN', 'Hammer', 'dUck', 'paNda', 'TElephone',
-
Using Random Module Computer Choose ...
Using Random Module Computer Choose A Character From List Then User Have To Predict His Opponent. There is Limit Of 10 Times Play Only & Have to Display Current Score/ Total Score/ And Winner. 1import random
2listt = ['s', 'w', 'g']
3chance = 10
4no_of_chance = 0
5computer_Point = 0
-
The program shows you a mystery word...
The program shows you a mystery word with its letters replaced by question marks. If you guess a letter correctly, the program replaces the question mark with the correct letter. When you think you know what the word is, type it out in full. The game ends once you enter the correct word or have no lives left. 1import random
2lives = 9
3words = ['pizza', 'fairy', 'teeth', 'shirt', 'otter', 'plane']
4secret_word = random.choice(words)
5print(f"Guess The Word From {words}")
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.