Welcome, guest | Sign In | My Account | Store | Cart

This recipe was written for my beautiful girl...however signification of this code is universal

Python, 27 lines
 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
from world import me, you
from my.consciousness import I, your # we need these words
from feelings import * 

always = True # are these statements

if you in (depressed, sadness, resignation):
    print 'my Sweetheart'
if feel(you) is lonely or feel(you) is neglected:
    talk_me(this)
while always:
    I.take_care_of(you)
    if you.love() is not me:
        # I will follow in the madness
        # I will ...
        break # down
for emotion in my.heart:
    try:
        your.lover = me
    except:
        your.best_friend = me
if you.hate(me):
    love(me)
elif I.annoying():
    love(me)
else:
    love(me, how='deeply', when='now') 

This recipe must be used in the proper person state. Implementation of "love" function is user-dependent. Is demanded that person objects must have compatible interfaces.

1 comment

Caner 16 years, 2 months ago  # | flag

excellent :)

Created by Damian Parniewicz on Tue, 6 Jun 2006 (PSF)
Python recipes (4591)
Damian Parniewicz's recipes (2)

Required Modules

  • (none specified)

Other Information and Tasks