On 10/27/24 16:51, o1bigtenor via Python-list wrote:
Greetings
There are mountains of books out there.
Any suggestions for documents for a just learning how to program and
starting with Python (3)?
Preference to a tool where I would be learning by doing - - - that
works well for me.
TIA
Fra
On Tue, 29 Oct 2024 16:05:53 -0600, Mats Wichmann wrote:
> Frankly, the mountain of resources is so vast that none of us can have
> experience of more than a small fraction, and effective learning is a
> factor not only of the quality of the teacher/book/training course, but
> how it meshes with y
On 2024-10-29, Loris Bennett wrote:
> Hi,
>
> With Python 3.9.18, if I do
>
> try:
> with open(args.config_file, 'r') as config_file:
> config = configparser.ConfigParser()
> config.read(config_file)
> print(config.sections())
>
> i.e try to read the
On 2024-10-29 13:56, Loris Bennett via Python-list wrote:
Hi,
With Python 3.9.18, if I do
try:
with open(args.config_file, 'r') as config_file:
config = configparser.ConfigParser()
config.read(config_file)
print(config.sections())
i.e try to
Hi,
With Python 3.9.18, if I do
try:
with open(args.config_file, 'r') as config_file:
config = configparser.ConfigParser()
config.read(config_file)
print(config.sections())
i.e try to read the configuration with the variable defined via 'with
... a