Re: Tkinter widgets into classes.

2014-02-01 Thread albert visser
oop() -- Vriendelijke groeten / Kind regards, Albert Visser Using Opera's mail client: http://www.opera.com/mail/ -- https://mail.python.org/mailman/listinfo/python-list

Re: Is vars() the most useless Python built-in ever?

2015-12-02 Thread Albert Visser
Indeed you are correct about the wording, but your interpretation is wrong. Mm, not so much. What you're describing is a statement like "There should be one way and it should be obvious". -- Vriendelijke groeten / Kind regards, Albert Visser Using Opera's mail client: h

Re: Need help on a project To :"Create a class called BankAccount with the following parameters "

2016-03-05 Thread Albert Visser
ly there's extra information available on the "Error running your script" message. You should examine that. Meanwhile, I think the line "return invalid transaction" provides a clue. -- Vriendelijke groeten / Kind regards, Albert Visser Using Opera's mail client: http://www.opera.com/mail/ -- https://mail.python.org/mailman/listinfo/python-list

Re: I am out of trial and error again Lists

2014-10-24 Thread Albert Visser
and hit enter to examine the result, instead of pushing F5 to run your code -- Vriendelijke groeten / Kind regards, Albert Visser Using Opera's mail client: http://www.opera.com/mail/ -- https://mail.python.org/mailman/listinfo/python-list

Re: Where is inspect() located?

2014-11-16 Thread Albert Visser
only for 3.x? Thank you. Windows may not be case-sensitive, but Python is iirc -- Vriendelijke groeten / Kind regards, Albert Visser -- https://mail.python.org/mailman/listinfo/python-list

Re: Tuples and immutability

2014-03-02 Thread albert visser
', 's', 'p', 'a', 'm'] consequently, try adding something that can not be interpreted as a sequence: In [4]: mylist += 3 --- TypeError Traceback (most

Re: trailing underscores naming convention_

2014-05-09 Thread Albert Visser
both getting called on the event unless you do not call the superclass's __init__() in your own __init__(). -- Vriendelijk groeten / Kind regards, Albert Visser Using Opera's mail client: http://www.opera.com/mail/ -- https://mail.python.org/mailman/listinfo/python-list

Re: semicolon at end of python's statements

2013-09-02 Thread albert visser
e might be about). Somehow this makes sense to me. But then, I also like 'x = y if else z'. Moreover, I'm Dutch (...) Albert Visser -- Using Opera's mail client: http://www.opera.com/mail/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Why doesn't input code return 'plants' as in 'Getting Started with Beautiful Soup' text (on page 30) ?

2015-07-12 Thread Albert Visser
ulSoup(f,"lxml") should have been something like >>> with open("C:\Beautiful Soup\ecologicalpyramid.html","r")as f: ... soup = BeautifulSoup(f,"lxml") -- Vriendelijke groeten / Kind regards, Albert Visser Using Opera's mail client: http://www.opera.com/mail/ -- https://mail.python.org/mailman/listinfo/python-list

Re: Problem configuring apache to run python cgi on Ubuntu 14.04

2015-09-21 Thread Albert Visser
orking. Can anybody help me out? Thanks in advance. Which Python are you running? If it's Python 3, change the shebang accordingly because "python" is assuming Python 2. -- Vriendelijke groeten / Kind regards, Albert Visser Using Opera's mail client: http://www.op

Re: Sequencing images using tkinter?

2014-08-30 Thread Albert Visser
myButton1.config(image=myImage, width="100", height="200") sleep(0.2) myButton1=Button(canvas1, text='OK', justify = LEFT, command=rotate) myButton1.place(x=500,y=300) myGui.mainloop() Hope this helps -- Vriendelijke groeten / Kind regards, A