Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
import sys
print(sys.version)
rpy = input("Hello user, what's your name?\n")
choice = int(input("Hello "+rpy+", what do you want to talk about?\n1. The Weather\n2. Video Games\n3. Phones\n4. Sports\n5. Computer Specs\n"))
if choice == 1:
weather_response = input("")
if choice == 2:
vid_choice = input("")
if choice == 3:
phone_choice = input("")
if choice == 4:
sport_choice = input("")
if choice == 5:
specs_choice = int(input("What kind of specs are you looking for?\n1 CPU\n2 GPU\n3 RAM\n4 SSD\n5 HDD\n6 Motherboard\n7 Box\n"))
if specs_choice == 1:
y = input("What brand do you prefer? If you don't know any, I advise you to chose Intel.\n")
if y == "Intel" or y == "intel" or y == "INTEL":
print("Great choice.\n")
y1 = input("Sooo, are you searching because you want to buy one?")
if y1 == "yes" or y1 == "Yes" or y1 == "YES":
y2 = input("Nice. I can help you choose the perfect CPU. Do you want my help?")
if y2 == "yes" or y2 == "Yes" or y2 == "YES":
print("Ok. If you have money to spend I advise you to buy the new i9 7900X for more or less £1000 but if you dont have that much you can buy a i7 7700 for £400")
if y2 =="no" or y2 == "No" or y2 == "NO":
y2_1 = input("Wow, you dont trust me *crying emoji*. Sooo do you already have one in mind?")
if y2_1 == "yes" or y2_1 == "YES" or y2_1 == "Yes":
available_intel_cpu = ("i9 7900X","i7 7700","i5 7640X", "i3 8300", "Pentium")
y2_1_1 = input("which one?")
if y2_1_1 == available_intel_cpu:
print("Great choice.Feel free to check the others specs\n")
else:
print("Sorry, but I dont have knowledge on bad processors xD")
elif y2_1 == "no" or y2_1 == "NO" or y2_1 == "No":
cpu_list = int(input("Ok, so here's a list of the available cpu's:\n1 i9 7900X\n2 i7 7700\n3 i5 7640X\n4 i3 8300\n5 Pentium\n"))
if cpu_list == 1:
print("So, this cpu has 4.3GHz(overclock), socket 2066, cache with 13,75MB, 20 threads and costs around £1000")
if cpu_list == 2:
print("description")
if cpu_list == 3:
print("description")
if cpu_list == 4:
print("description")
if cpu_list == 5:
print("description")
if y1 == "no" or y1 == "No" or y1 == "NO":
print("Ok. Feel free to check the others choices")