You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a Python program for spamming messages using the PyAutoGUI library. The user is prompted to provide a start button, a stop button, and a file containing the messages to be spammed. The program continuously listens for the start button to be pressed, and if it is, it reads the messages from the file and starts spamming them.
"Rock, Paper, Scissors game in Python. Players choose their move, computer randomly selects, winner determined, option to play again. Simple, interactive fun!"
This repository contains a collection of Python scripts designed to perform temperature conversions between Celsius and Fahrenheit using both command-line and graphical interfaces. The main script, temp_convert_gui.py, provides a user-friendly graphical interface for conversions, while the other scripts offer command-line functionality.
Generates unique usernames by combining the first initial, first 7 characters of the last name, and a random number, ensuring uniqueness by checking against a set of existing usernames.
This program lets you track the scores for a game between two players. You start by entering the players' names, and then the program keeps track of their scores as you play. The game goes on until one of the players wins by either getting at least 15 points with a 2-point lead or scoring 7 points while the other player has none.
This Python code implements a simple Hangman game. It selects a random word from a list, allows the player to guess letters, and displays the current state of the word with underscores for unknown letters.
This Python code implements the classic Hangman game. You're presented with a hidden word represented by a row of underscores. Your goal is to guess the word letter by letter, revealing the correct ones in their positions. With each incorrect guess, you lose a life.
This Python script prompts users to convert temperature between Celsius and Fahrenheit, providing formatted results. It offers continuous conversion or program exit, enhancing user flexibility and experience.
This Python code implements the classic Rock, Paper, Scissors game. You choose between rock, paper, or scissors, and the computer randomly selects its choice. The code determines the winner based on the standard game rules and displays the results.
This simple Python program calculates the total dollar value of a given number of quarters, dimes, nickels, and pennies. The user is prompted to enter the count of each type of coin, and the program computes the total value in dollars.
This program determines if a person is eligible to vote in the US elections. It takes input from the user to assess the following: Citizenship, Age, State Residency, and Felony Status.
The “Guess the Number” game is a fun Python command-line game where the computer picks a random number, and the player tries to guess it. The game gives hints if the guess is too high, too low, or correct, making it an enjoyable challenge.