Alan Gauld schrieb am Donnerstag, 8. April 2021 um 02:05:01 UTC+2:
> On 07/04/2021 09:35, Mohsen Owzar wrote:
>
> > The problem is that I can't use the variable "val" from Tab2 in Tab 1,
> > # Filename: Tab1.py
> > from tkinter import *
> >
> > def gen_t1(frame):
> > f = LabelFrame(frame, tex
On 07/04/2021 09:35, Mohsen Owzar wrote:
> The problem is that I can't use the variable "val" from Tab2 in Tab 1,
> # Filename: Tab1.py
> from tkinter import *
>
> def gen_t1(frame):
> f = LabelFrame(frame, text='f', bg='lightgreen')
> f.pack(expand=True, fill='both')
>
> b1 = Button(f,
linux mint 20
python 3.8
jupyter 1.0.0
jedi 0.18.0
I am teaching myself pandas/jupyter notebooks. The problem I am having
is tab autocomplete seems to be working erratically.
Googling shows that most people solve autocomplete problems by putting
import pandas as pd
%config Completer.use_jedi
On Wed, Apr 7, 2021 at 10:30 PM Stestagg wrote:
>
>
>
> On Wed, Apr 7, 2021 at 12:31 PM Chris Angelico wrote:
>>
>>
>> I just realised that the whole eval/exec/namespace stuff is massive
>> overkill. All you need is an object that is inconsistent in its
>> boolification...
>>
>
> Somewhat related
On Wed, Apr 7, 2021 at 12:31 PM Chris Angelico wrote:
>
> I just realised that the whole eval/exec/namespace stuff is massive
> overkill. All you need is an object that is inconsistent in its
> boolification...
>
>
Somewhat related: https://bugs.python.org/issue42899
Steve
--
https://mail.pytho
Over the last couple of weeks, we have worked with our designer Jessica
Peña to come up with a logo which reflects both our desire to come
together online during the pandemic and shows how well our community is
interconnected around the world.
Here's our brand new logo for EuroPython 2021 Online:
On Tue, Apr 6, 2021 at 12:40 PM Terry Reedy wrote:
>
> On 4/5/2021 3:32 PM, Chris Angelico wrote:
>
> > On Tue, Apr 6, 2021 at 5:14 AM Terry Reedy wrote:
> >> Python *could* do the same for expresssions: load 'a' (in this case)
> >> once into a register or stack slot and use that value consistent
Hi guys
I have written a GUI with two tabs, Tab 1 and Tab 2 as shown below:
On Tab 2 should be my settings parameters placed like "Val".
If the user types a value greater than 5 in the entry field, the background
color of Tab1 should be changed from light green to gray and the button "B1"
should