import random
def cow(ox):
A = ["I am","I like","I want ","I look","I have",
"Are you","Do you like","Do you want","Do you look"]
B = ["a cat","a dog","happy","home","funy","car"]
print(f"{ox}「{A[random.randint(0, len(A)-1)]} {B[random.randint(0, len(B)-1)]}」")
cow("cow")
To embed this project on your website, copy the following code and paste it into your website's HTML: