Skip to content

Commit f6f9497

Browse files
committed
Add new projects
1 parent 0c55d54 commit f6f9497

File tree

7 files changed

+117
-0
lines changed

7 files changed

+117
-0
lines changed
+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
import colorama
2+
# Back for background, Fore for text color
3+
from colorama import Back, Fore
4+
5+
# This line is make sure that the color style resets once the execution of program is complete
6+
colorama.init(autoreset = True)
7+
8+
text = input("Enter a pharse or sentence: ")
9+
10+
# Colorama has limited color options
11+
print(Fore.BLACK + Back.WHITE + text)
12+
print(Fore.RED + Back.CYAN + text)
13+
print(Fore.GREEN + Back.MAGENTA + text)
14+
print(Fore.YELLOW + Back.BLUE + text)
15+
print(Fore.BLUE + Back.YELLOW + text)
16+
print(Fore.MAGENTA + Back.GREEN + text)
17+
print(Fore.CYAN + Back.RED + text)
18+
print(Fore.WHITE + Back.BLACK + text)

Dice Roller/Dice Roller.py

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Importing randome module
2+
import random
3+
4+
# Initiating an while loop to keep the program executing
5+
while True:
6+
print("Rolling Dice...")
7+
8+
# Using random.randint(1,6) to generate a random value between 1 & 6
9+
print(f"The value is ", random.randint(1,6))
10+
11+
# Asking user to roll the dice again or quit
12+
repeat = input("Roll Dice again? 'y' for yes & 'n' for no: ")
13+
14+
# If the user answers negative the loop will break and program execution stops otherwise the program will continue executing
15+
if repeat == 'n':
16+
break
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Importing random module
2+
import random
3+
4+
# Asking user for the length of the password to be generated
5+
pass_len = int(input("Enter the length of the password: "))
6+
7+
# Characters and symbols to generate password
8+
pass_data = "qwertyuiopasdfgjklzxcvbnm1234567890[];',./!@#$%^&*()_+:<>?"
9+
10+
# Using random.sample() to collect random data from pass_data as a list & using .join() to join the list elements to form a string
11+
password = "".join(random.sample(pass_data, pass_len))
12+
13+
print(password)
+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Run "pip install pyqrcode" before running this program
2+
import pyqrcode
3+
4+
data = input("Enter the text or link to generate QR code: ")
5+
6+
# Using pyqrcode.create() to create a qr code of the input data
7+
qr = pyqrcode.create(data)
8+
9+
# Using .svg method to save the qr code as SVG file of provided name & scale
10+
qr.svg('qr_code.svg', scale = 8)

Quiz Game/Quiz Game.py

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
from questions import quiz
2+
3+
def check_ans(question, ans, attempts, score):
4+
if quiz[question]['answer'].lower() == ans.lower():
5+
print(f"Correct Answer! \nYour score is {score + 1}!")
6+
return True
7+
else:
8+
print(f"Wrong Answer :( \nYou have {attempts - 1} left! \nTry again...")
9+
return False
10+
11+
score = 0
12+
for question in quiz:
13+
attempts = 3
14+
while attempts > 0:
15+
print(quiz[question]['question'])
16+
answer = input("Enter Answer: ")
17+
check = check_ans(question, answer, attempts, score)
18+
if check:
19+
score += 1
20+
break
21+
attempts -= 1
22+
23+
print(f"Your final score is {score}! \nThanks for playing :D")

Quiz Game/questions.py

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
quiz = {
2+
1 : {
3+
"question" : "What is the first name of Iron Man?",
4+
"answer" : "Tony"
5+
},
6+
2 : {
7+
"question" : "Who is called the god of lightning in Avengers?",
8+
"answer" : "Thor"
9+
},
10+
3 : {
11+
"question" : "Who carries a shield of American flag theme in Avengers?",
12+
"answer" : "Captain America"
13+
},
14+
4 : {
15+
"question" : "Which avenger is green in color?",
16+
"answer" : "Hulk"
17+
},
18+
5 : {
19+
"question" : "Which avenger can change it's size?",
20+
"answer" : "AntMan"
21+
},
22+
6 : {
23+
"question" : "Which Avenger is red in color and has mind stone?",
24+
"answer" : "Vision"
25+
}
26+
}

Story Generator/Story Generator.py

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Importing random module
2+
import random
3+
4+
# Storing random data into lists to create story.
5+
when = ['A long time ago', 'Yesterday', 'Before you were born', 'In future', 'Before Thanos arrived']
6+
who = ['Shazam', 'Iron Man', 'Batman', 'Superman', 'Captain America']
7+
went = ['Arkham Asylum', 'Gotham City', 'Stark Tower', 'Bat Cave', 'Avengers HQ']
8+
what = ['to eat a lot of cakes', 'to fight for justice', 'to steal ice cream', 'to dance']
9+
10+
# Using string concatenition & randome.choice() to print a random element from all the lists
11+
print(random.choice(when) + ', ' + random.choice(who) + ' went to ' + random.choice(went) + ' ' + random.choice(what) + '.')

0 commit comments

Comments
 (0)