Skip to content
Permalink
c352065a0d
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
8 lines (6 sloc) 359 Bytes
import random #this package allows to choose randomly an index of a list
""" prints random answers to compliments """
def thanks():
answer = ["Thank you! :)", "I know, I know..", "I have never heard that before, thank you!",
"Probably you are right :)", "I don't care about what you think."]
print(random.choice(answer))