Python Forum

Full Version: problem with python
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
(Apr-28-2021, 09:23 AM)raarkil Wrote: [ -> ]thanks so what I can do?

The canonical way is something along those lines:

import tkinter as tk
import pandas as pd
import numpy as np
This way imported names have their own namespaces reducing ambiguity and possibility of name collision.
but where I can find list of modules that is right to python3?
and could you give advise what module is better to use to build GUI in python3?
(Apr-29-2021, 10:08 AM)perfringo Wrote: [ -> ]
(Apr-28-2021, 09:23 AM)raarkil Wrote: [ -> ]thanks so what I can do?

The canonical way is something along those lines:

import tkinter as tk
import pandas as pd
import numpy as np
This way imported names have their own namespaces reducing ambiguity and possibility of name collision.
thanks
Pages: 1 2 3