-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
59 lines (49 loc) · 1.66 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
from art import logo, vs
from game_data import data
from replit import clear
import random
# Format the account data into printable form
def format_data(account):
"""Format the account data into printable form"""
account_name = account["name"]
account_descr = account["description"]
account_country = account["country"]
return f"{account_name}, {account_descr}, {account_country}"
def check_answer(guess, a_followers, b_followers):
"""Take the user guess and follower counts and returns if they got it right."""
if a_followers > b_followers:
return guess == "a"
else:
return guess == "b"
# Display art
print(logo)
score = 0
game_should_continue = True
# Generate a random account from the game data
account_b = random.choice(data)
# Make the game repeatable
while game_should_continue:
# Making account at position B become the next account at position A.
account_a = account_b
account_b = random.choice(data)
if account_a == account_b:
account_b = random.choice(data)
print(f"Compare A: {format_data(account_a)}.")
print(vs)
print(f"Against B: {format_data(account_b)}.")
# Ask user for a guess
guess = input("Who has more followers? Type 'A' or 'B': ").lower()
# Check if user is correct
## Check follower count of each account
a_followers = account_a["follower_count"]
b_followers = account_b["follower_count"]
is_correct = check_answer(guess, a_followers, b_followers)
clear()
# Give user feedback on their guess
# score keeping
if is_correct:
score += 1
print(f"You're right! Current score: {score}.")
else:
game_should_continue = False
print(f"Sorry, that's wrong. Final score: {score}.")