满屏表白代码python
时间: 2023-11-03 20:00:37 浏览: 85
def love_message():
print("亲爱的小可爱:")
time.sleep(2)
print("今天是520,我想对你说...")
time.sleep(3)
print("从遇见你那一刻起,我的世界变得不同了。")
time.sleep(3)
print("每个日出和日落都变得更加美好,因为有你相伴。")
time.sleep(4)
def display_love_message():
love_message()
choice = input("请问你愿意成为我的女朋友吗?请输入yes或no:")
while True:
if choice == "yes":
for _ in range(20):
print("\033[95m❤️\033[0m", end="")
while True:
print("\033[95m❤️\033[0m", end="")
elif choice == "no":
for _ in range(20):
print("\033[95m❤️\033[0m", end="")
while True:
print("\033[95m❤️\033[0m", end="")
else:
choice = input("请回答yes或no:")
display_love_message()
阅读全文