Permalink
Cannot retrieve contributors at this time
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?
ChatBot/joseph_newUpdates.py
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
109 lines (74 sloc)
3.33 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#joseph | |
# sports | |
import sys | |
import time | |
localtime = time.asctime( time.localtime(time.time()) ) | |
print("The Local current date and time is ", localtime) | |
print('Hello!, my name is chatbot8.0' ) | |
time.sleep(2) | |
print('Whats your name?') | |
Name = input() | |
print('Im happy to meet you, ' + Name + '!!') | |
time.sleep(2) | |
print('lets talk about sports, shall we? ') | |
sports = input() | |
if 'yes' in sports or 'sure' in sports or 'yeah' in sports or 'no problem' in sports or 'okay' in sports or 'yeah sure' in sports or 'yes sure' in sports or 'ok' in sports: | |
print('perfect'+'!!!') | |
else: | |
print('thats sad i really wanted to talk about that , ' + Name ) | |
print(' what else are you interested in ?') | |
input() | |
sys.exit() | |
print(" choose a sport you like? ") | |
time.sleep(2) | |
option = int(input("\n 1. football\n 2. basketball\n 3. tennis\n 4. baseball\n 5. cricket\n 6. rugby\n 7. american football\n ")) | |
if option == 1: | |
football = input("i love football") | |
if option == 2: | |
basketball = input("i watch a lot of basketball games but i dont play ") | |
if option == 3: | |
tennis = input("i played tennis when i was little but that was it ") | |
if option == 4: | |
baseball = input(" i dont really fancy that baseball") | |
if option == 5: | |
cricket = input(" i was never really a fan of cricket") | |
if option == 6 or option== 7 : | |
input(" i find those sports very rough and aggressive") | |
sports = input('have you ever played before? ') | |
if sports == 'yes' or sports == 'sure' or sports == 'yeah' or sports == 'yes i have': | |
print('oh thats fantastic.') | |
else: | |
print ('why not ?? you need to try someday. i want to play but if i sweat my body goes bye bye ') | |
sys.exit() | |
sports = input('do you have a favourite player? ')# find a way to add the database of all the players in those sports so chatbot can scan through it | |
# make it pass the next couple of lines | |
if sports == "yes" or sports == "yeah" or sports == "yep": | |
favPlayer = input("Who is your favourite player? ") | |
if favPlayer == "lebron james": | |
print("He is my favourite player as well !!! #twining") | |
else: | |
sports = input(favPlayer +' is a good player but i like paul pogba cause im a football fan ') | |
if 'no' in sports or 'nope' in sports or 'nah' in sports: | |
print("thats cool anyways") | |
time.sleep(2) | |
sports = input("do you play video games of any of these sports? ") | |
if 'yes' in sports or 'sure' in sports or 'yeah' in sports or 'okay' in sports or 'yeah sure' in sports or 'yes sure' in sports: | |
print ("thats really cool ") | |
else: | |
print (" too bad, we sell games in those sports and many other things. ") | |
sys.exit() | |
sports = input(" we do sell some games and sports merchandise if you would like to see ? ") | |
if 'yes' in sports or 'sure' in sports or 'yeah' in sports or 'no problem' in sports or 'okay' in sports or 'yeah sure' in sports or 'yes sure' in sports: | |
print (" what game would you like ?") | |
listOfGames = ["fifa" , "nba2k" , "cricket" , "tennis" , "baseball"] | |
g = listOfGames | |
for g in listOfGames: | |
print (g) | |
sports = input () | |
sportsYear = int(input(" which year would you like?")) | |
if sportsYear < 16 : | |
print (" sorry not available maybe try a later version ") | |
elif sportsYear <= 19 : | |
print (" i believe thats in stock ") | |
else : | |
print(" those games will be coming soon !!") | |