python 2022年9月27日 2022年9月27日 import random lists = ["猫", "兔子", "野驴"] x = random.choice(lists) print('推荐动物: {name}\n'.format(name=x))