Skip to content
View ytsrextest's full-sized avatar
💭
I may be slow to respond.
💭
I may be slow to respond.

Block or report ytsrextest

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. 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.
    1
    import random
    2
    import string
    3
    adjectives = ['sleePy', 'sloW', 'Smelly', 'wEt', 'fAt', 'Red', 'oranGe', 'yEllow', 'greeN', 'bLue', 'Purple',
    4
                  'fluffy', 'white', 'proud', 'brave']
    5
    nouns = ['Apple', 'dInosaur', 'baLL', 'toasteR', 'goaT', 'dragoN', 'Hammer', 'dUck', 'paNda', 'TElephone',
  2. 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.
    1
    import random
    2
    listt = ['s', 'w', 'g']
    3
    chance = 10
    4
    no_of_chance = 0
    5
    computer_Point = 0
  3. 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.
    1
    import random
    2
    lives = 9
    3
    words = ['pizza', 'fairy', 'teeth', 'shirt', 'otter', 'plane']
    4
    secret_word = random.choice(words)
    5
    print(f"Guess The Word From {words}")
  4. snake-water-gun snake-water-gun Public

    Forked from NikhilRajPandey/snake-water-gun

    Python