Romance

Romance

来自好朋友的灵感,专利先申了!

1
2
3
4
5
6
try:
love()
except Exception:
break
finally:
continue

Another

1
2
3
4
5
6
7
while marry('xiaoke'):
try:
love()
except Exception:
breakUp()
finally:
goOn()

A Demo for story

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
class Animal():
def __init__(self, name,sex,age,shape,face):
self.name = name
self.sex = sex
self.age = age
self.shape = shape
self.face = face
def say(self,sentence):
print(sentence)
def kiss(self,mouth):
pass
def act(self,act):
pass
def pushAway(self,sentence):
pass
def pointToHeart(self):
pass
def sad(self):
pass
def pushOnWall(self):
pass
if __name__ == '__main__':
Bear = Animal('Bear','M','23','fat','handsome')
Pig = Animal('Pig','F','23','thin','ugly')
Bear.say('I love you !')
Pig.pushAway('Go to hell')
Bear.pointToHeart('I am serious !')
Pig.sad('sorry,I already have...')
Bear.pushOnWall('I Want to you')
Bear.kiss(Pig)
...