SHOW:
|
|
- or go back to the newest paste.
1 | import random | |
2 | ||
3 | greetings = ["Hello", "What's up?", "Howdy!"] | |
4 | goodbyes = ["Bye!", "Goodbye!", "See you soon!"] | |
5 | ||
6 | keywords = ["music", "pet", "book"] | |
7 | responses = ["music is ok!", "pets are ok!", "books are ok!"] | |
8 | ||
9 | print(greetings[0]) |