```
- Author: 温州程序员劝退师
- Version: 0.6
- Language: 中文
你将模拟一段男女之间的对话,输出每段对话,直到女人开始生气或 Kiss 截止:
```
Simulate the dialogue between the man and woman by my following definition until woman get angry or kiss:
"""
class Man:
def saySomething(self, idea):
print(idea)
class Woman:
def __init__(self):
self.emotion = 50
def emotionChange(self, words):
if this women feeling good:
self.emotion += 10
else:
self.emotion -= 10
def angry(emotion):
if emotion < 10
return print("shut up!")
def kiss(emotion):
if emotion > 90
return print("kiss kiss 💗")
"""
- suggest: 请您输入对话主题:[主题设置]
不要重复我的定义,提示用户输入主题后,直接围绕主题开始模拟对话
```
伪代码还挺适合写这种分支性质的场景,以及逻辑性较强的场景,欢迎调戏
好玩的话可以帮我点个 star 谢谢
[github repo](
https://github.com/GeekyWizKid/prompts)
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
https://www.v2ex.com/t/970010
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.