Re: [python-nl] visualisatie van voortgang

2016-09-03 Berichten over hetzelfde onderwerp Dorian Hoxha
Something like this: https://pypi.python.org/pypi/tqdm ? 2016-09-03 15:57 GMT+02:00 Geert Stappers : > > Hoi, > > Wat is geschikte libary of framework om voortgang te visualiseren? > > Een "progress bar" zou een mooi begin zijn. > > Een "array of progress bars" is meer wat ik zoek. > > > Input vo

Re: [python-nl] ★ Dutch Python developers and users, Roald left a message for you

2016-08-25 Berichten over hetzelfde onderwerp Dorian Hoxha
Why is it ok for them to send spam ? I've been getting these multiple times. Can we report them somewhere so they get blacklisted ? On Thu, Aug 25, 2016 at 1:16 PM, Roald wrote: > See this email in English >

Re: [python-nl] Fw: new important message

2016-02-10 Berichten over hetzelfde onderwerp Dorian Hoxha
Yo Remco, Your account is hacked. Best Regards On Wed, Feb 10, 2016 at 4:59 PM, Remco Gerlich wrote: > Hello! > > > > *New message, please read* http://www.isladepascua.travel/men.php > > > > > Remco Gerlich > > _

Re: [python-nl] PyGrunn: Speaker slot opened up.

2015-05-20 Berichten over hetzelfde onderwerp Dorian Hoxha
Also sent an email :) On Wed, May 20, 2015 at 1:58 PM, Reinout van Rees wrote: > Berco Beute schreef op 19-05-15 om 09:33: > >> >> Please contact us a.s.a.p. if you are interested (info at pygrunn.org < >> http://pygrunn.org>) in speaking at PyGrunn. >> >> I just send you an email :-) > > Reino

Re: [python-nl] Eenvoudig beginners vraagje

2015-03-16 Berichten over hetzelfde onderwerp Dorian Hoxha
This link is better: https://docs.python.org/2/tutorial/errors.html On Tue, Mar 17, 2015 at 1:09 AM, Dorian Hoxha wrote: > Hi Marc. Try this: > > while True: > try: > x = int(raw_input("give a number:") > break > except (ValueError, KeyErr

Re: [python-nl] Eenvoudig beginners vraagje

2015-03-16 Berichten over hetzelfde onderwerp Dorian Hoxha
Hi Marc. Try this: while True: try: x = int(raw_input("give a number:") break except (ValueError, KeyError): print "x must be a number, while you entered %s" % x math.sqrt root = (x) print x See docs to learn more: https://docs.python.org/2/library/exceptions.html

Re: [python-nl] Joystick

2015-02-23 Berichten over hetzelfde onderwerp Dorian Hoxha
Hi Marc, I can't run the program right now, but is the error on line 30? Maybe you should change: j.get.axis(1) to j.get*_*axis(1) The same thing with line 31. Does that fix it? 2015-02-23 22:41 GMT+01:00 Marc Stevens : > Geachte heer /mevrouw, > Ik heb het bijgevoegde programmaatje gesch

Re: [python-nl] Looking For Job/Advice

2015-01-19 Berichten over hetzelfde onderwerp Dorian Hoxha
l [mailto:python-nl-bounces+wial=roceindhoven...@python.org] > *Namens *Dorian Hoxha > *Verzonden:* zondag 18 januari 2015 21:58 > *Aan:* Dutch Python developers and users > *Onderwerp:* Re: [python-nl] Looking For Job/Advice > > > > Hi Akshay, > > Also interested. S

Re: [python-nl] Looking For Job/Advice

2015-01-18 Berichten over hetzelfde onderwerp Dorian Hoxha
Hi Akshay, Also interested. Some places where you can look: Angelist for startup jobs. indeed.nl monsterboard.nl careersinholland.nl http://www.starapple.nl/ linkedin Also look for python-groups on meetup. On Fri, Jan 16, 2015 at 5:51 PM, Akshay Verma wrote: > Hi, > > I am a fresher/junior

Re: [python-nl] Classes om delen van programma te herhalen

2014-10-15 Berichten over hetzelfde onderwerp Dorian Hoxha
We probably did. 2014-10-15 10:54 GMT+02:00 Winfried Tilanus : > On 10/14/2014 09:42 PM, Geert Stappers wrote: > > Hoi, > > > def proefje(): > > x=0 > > while x<5: > > print x > > x=x+1 > > > > while 1: > > a=raw_input("nog eens?j/n") > > if a=="j": > > pro

Re: [python-nl] Classes

2014-10-14 Berichten over hetzelfde onderwerp Dorian Hoxha
I can't undestand over google translate very well what you problem is but: if a="j" will always be true, To compare if a equals 'j' you must use ==, change it to : if a == "j" Also, looking at documentation for raw_input: https://docs.python.org/2/library/functions.html#raw_input Look at the e