Revisions

gist: 214888 Download_button fork
public
Public Clone URL: git://gist.github.com/214888.git
Embed All Files: show embed
py.py #
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
# vim: fileencoding=utf-8
def _(x):
def op(y):
if x == '・' and y == '・':
print 'ハリのあるおっぱい'
elif x == '.' and y == '.' :
print '垂れ気味のおっぱい'
elif x == '. ' and y == ' .':
print '左右に広げたおっぱい'
elif x == ' .' and y == '. ':
print '真ん中に寄せたおっぱい'
elif x == '◎' and y == '◎':
print '立体的なおっぱい'
elif x == '○' and y == '○':
print '乳輪が大きいおっぱい'
elif x == '●' and y == '●':
print '乳輪が大きく黒いおっぱい'
elif x == '。' and y == '。':
print '色が薄く、左向きのおっぱい'
elif x == '. ' and y == ' .':
print '色が濃く、左向きのおっぱい'
elif x == '. ' and y == ' . ':
print '左下に押し付けたおっぱい'
elif x == ' . ' and y == ' .' :
print '右下に押し付けたおっぱい'
else:
print '引数には乳首しか受け付けません'
return op