abonnement Unibet Coolblue Bitvavo
pi_70497891
Degene die voor mij een scriptje of programmatje maakt die dit soort rekensommetjes uitrekent krijgt een tientje!
pi_70498002
quote:
Op maandag 29 juni 2009 23:12 schreef Flubberbal het volgende:
Degene die voor mij een scriptje of programmatje maakt die dit soort rekensommetjes uitrekent krijgt een tientje!
Ik krijg liever 4 euro per keer! haha
  maandag 29 juni 2009 @ 23:14:27 #78
260367 Schoonheid
Ware schoonheid zit van binnen
pi_70498013
ik duik mijn nest in.. ga echt niet tot 23.30 wachten

2.99+3.45:3.00+5.45-1.90=10
No matter who they follow
No matter where they lead
No matter how they judge us
I'll be everything you need
  maandag 29 juni 2009 @ 23:15:00 #79
147503 Iblis
aequat omnis cinis
pi_70498048
quote:
Op maandag 29 juni 2009 23:12 schreef Flubberbal het volgende:
Degene die voor mij een scriptje of programmatje maakt die dit soort rekensommetjes uitrekent krijgt een tientje!
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
def subsets(elems, l):
    if l == 1:
        for e in elems:
            yield [e]
        return
    for x in range(1 + len(elems) - l):
        r = [elems[x]]
        t = elems[x + 1:]
        for s in subsets(t, l - 1):
            yield r + s

def allsubsets(elems):
    for n in range(len(elems)):
        for s in subsets(elems, n+1):
            yield s

vals = [0.79, 0.99, 1.69, 2.05, 2.49, 3.69, 2.99, 3.89, 2.25, 3.79, 1.79, 0.59]

for s in allsubsets(vals):
    if abs(10 - sum(s)) < 0.001:
        print ' + '.join(["%5.2f" % x for x in s])


Python.
Daher iſt die Aufgabe nicht ſowohl, zu ſehn was noch Keiner geſehn hat, als, bei Dem, was Jeder ſieht, zu denken was noch Keiner gedacht hat.
pi_70498111
quote:
Op maandag 29 juni 2009 23:15 schreef Iblis het volgende:

[..]
[ code verwijderd speciaal voor flubberbalzak ]

Python.
I asked God for a bike, but I know God doesn't work that way.
So I stole a bike and asked for forgiveness.
  maandag 29 juni 2009 @ 23:17:24 #81
147503 Iblis
aequat omnis cinis
pi_70498153
Het geld mag naar je lokale dierenasiel dit keer.
Daher iſt die Aufgabe nicht ſowohl, zu ſehn was noch Keiner geſehn hat, als, bei Dem, was Jeder ſieht, zu denken was noch Keiner gedacht hat.
  maandag 29 juni 2009 @ 23:17:35 #82
122997 zquing
Drama Junk
pi_70498161
whehehe
"Those unforgettable days, for them I live"
pi_70498176
MET SCRIPTJE BEDOEL IK EEN PHP SCRIPTJE OF HTML OF IETS DAT OP EEN GRATIS WEBHOST TE UPLOADEN IS (sorry caps)
Wat heeft een python hiermee te maken?

wat is dat code?
  maandag 29 juni 2009 @ 23:17:54 #84
139330 TNA
For the stars that shine
pi_70498177
quote:
Op maandag 29 juni 2009 23:15 schreef Iblis het volgende:

[..]
[ code verwijderd ]

Python.
Seriously, er zitten bij jou echt acht professoren in een kamer op één account te FOK!ken
pi_70498208
lulz-topic.
pi_70498225
trouwens, code is verwijderd.. ?
pi_70498246
quote:
Op maandag 29 juni 2009 23:18 schreef Flubberbal het volgende:
trouwens, code is verwijderd.. ?
Echt snugger kom je niet over
I asked God for a bike, but I know God doesn't work that way.
So I stole a bike and asked for forgiveness.
pi_70498259
quote:
Op maandag 29 juni 2009 23:18 schreef Flubberbal het volgende:
trouwens, code is verwijderd.. ?
als je hem quote wel ja
gr gr
pi_70498285
Danku.

Mag topic op slot aub?
  maandag 29 juni 2009 @ 23:20:06 #90
147503 Iblis
aequat omnis cinis
pi_70498293
quote:
Op maandag 29 juni 2009 23:17 schreef Flubberbal het volgende:
MET SCRIPTJE BEDOEL IK EEN PHP SCRIPTJE OF HTML OF IETS DAT OP EEN GRATIS WEBHOST TE UPLOADEN IS (sorry caps)
Wat heeft een python hiermee te maken?

wat is dat code?
Het is een Python-script, te draaien onder Python, http://www.python.org/, als je per se een PHP-script wilt, dan ben je bij mij aan het verkeerde adres.
Daher iſt die Aufgabe nicht ſowohl, zu ſehn was noch Keiner geſehn hat, als, bei Dem, was Jeder ſieht, zu denken was noch Keiner gedacht hat.
  maandag 29 juni 2009 @ 23:20:11 #91
13783 Anthraxx
When you see the robot, drink!
pi_70498303
quote:
Op maandag 29 juni 2009 23:17 schreef Flubberbal het volgende:
MET SCRIPTJE BEDOEL IK EEN PHP SCRIPTJE OF HTML OF IETS DAT OP EEN GRATIS WEBHOST TE UPLOADEN IS (sorry caps)
Wat heeft een python hiermee te maken?

wat is dat code?
  maandag 29 juni 2009 @ 23:20:39 #92
147503 Iblis
aequat omnis cinis
pi_70498330
quote:
Op maandag 29 juni 2009 23:17 schreef TNA het volgende:

[..]

Seriously, er zitten bij jou echt acht professoren in een kamer op één account te FOK!ken
De subroutines had ik ooit al gemaakt hoor.
Daher iſt die Aufgabe nicht ſowohl, zu ſehn was noch Keiner geſehn hat, als, bei Dem, was Jeder ſieht, zu denken was noch Keiner gedacht hat.
  maandag 29 juni 2009 @ 23:22:28 #93
31936 Dr_Flash
CubeMeister
pi_70498414
quote:
Op maandag 29 juni 2009 22:58 schreef -J-D- het volgende:
Dit is een topic waar je in gepost moet hebben.
If you say so
Salivili hipput tupput tapput äppyt tipput hilijalleen
pi_70498431
quote:
Op maandag 29 juni 2009 23:20 schreef Iblis het volgende:

[..]

Het is een Python-script, te draaien onder Python, http://www.python.org/, als je per se een PHP-script wilt, dan ben je bij mij aan het verkeerde adres.
Ik weet zeker dat er nou een reactie van TS komt met "huh, Error 404: File Not Found ???"
gr gr
  maandag 29 juni 2009 @ 23:23:52 #95
31936 Dr_Flash
CubeMeister
pi_70498475
quote:
Op maandag 29 juni 2009 23:17 schreef Flubberbal het volgende:
MET SCRIPTJE BEDOEL IK EEN PHP SCRIPTJE OF HTML OF IETS DAT OP EEN GRATIS WEBHOST TE UPLOADEN IS (sorry caps)
KRIJG DE HIK EN VLEKKEN EN EEN DIKKE VETTE VIEZE DONKERBRUINE WRAT OP DE BINNENKANT VAN JE RECHTERBIL MET PUS ERUIT EN DRIE HAREN EROP (sorry caps)

Hou eens op met bestaan, droeftoeter.
Salivili hipput tupput tapput äppyt tipput hilijalleen
pi_70498495
tog niet

k heb python 2.6 gedownload

welke moet ik openen? idle gui ofzo of de command line?
pi_70498531
quote:
Op maandag 29 juni 2009 23:23 schreef Dr_Flash het volgende:

[..]

KRIJG DE HIK EN VLEKKEN EN EEN DIKKE VETTE VIEZE DONKERBRUINE WRAT OP DE BINNENKANT VAN JE RECHTERBIL MET PUS ERUIT EN DRIE HAREN EROP (sorry caps)

Hou eens op met bestaan, droeftoeter.
pas maar op ik flash je



pi_70498545
Hiermee moet het iedereen wel lukken:

Etos Extra Strong stylinggel 1,18
Elvive Color-Vive Nutri 3,49
Etos voordeelselectie badschuim 0,59
Etos Fluor Tandpasta 0,79
Etos pleisters waterbestendig 1,05
Andrelon Iedere dag shampoo 1,99
Etos wattenschijfjes 0,79
Olvaritfruithapje 0,99
Sanex Dermo protect 3,69
FA sport deospray 2,05
Olvarit Drinkfruit zomerfruit 1,79
Etos Fluor Tandpasta 0,79
Etos voordeelselectie doucheschuim 0,59
Etos voordelselectie nachtcreme gevoelige huid 1,13
Kleenex Balsam tissues 1,55
Fructis Style endurance 24H invisble gel 3,79
Etos voordelselectie reinigingsmelk alle typen 1,89
Schwarzkopf Shampoo 7 kruiden 2,39
Dove go fresh touch deoroller 2,99
Etos tampons normaal (32 stuks) 1,99
Nivea for men active 3 douche 2,99
Bourjous douchegel teder geluk 2,99
Nestle dreumesmelk vanille 1,69
Etos man scheergel sensitive 2,49
Always ultra normaal plus voordeelpak 28 3,89
Dove original Deospray 2,25
Parodontax fluor tandpaste 2,99
Andrelon Krullemousse 3,79
Natusan zoogcompressen 2,99
Pantene Pro V puur conditioner 3,99
Etos damesscheergel gevoelige huid 2,29
pi_70498546
tvp
pi_70498548
TVP - voor meer.
Roken is lekker
abonnement Unibet Coolblue Bitvavo
Forum Opties
Forumhop:
Hop naar:
(afkorting, bv 'KLB')