Re: error of opening Python

2023-09-26 Thread Chris Roy-Smith via Python-list
On 26/9/23 22:27, Abdelkhelk ashref salay eabakh via Python-list wrote: Dear Python team, This is my not first time using Python, I tried to launch Python and it showed I'm no expert but "Python 3.11.3 (tags/v3.11.3:f3909b8, Apr 4 2023, 23:49:59) [MSC v.1934 64 bit (AMD64)] on win surel

Re: NoneType List

2022-12-31 Thread Chris Roy-Smith
On 31/12/22 16:45, Goran Ikac wrote: Happy New Year, everybody! I'm new in the Python List, new in Python world, and new in coding. A few days (weeks?) ago, I faced a problem trying to write a program for an exercise. I asked for help and nobody answered. In the meantime, I found a part of the so

Re: Python program to phone?

2019-02-04 Thread Chris Roy-Smith
" NOT "reply" Sorry I can't help you on your initial problem Regards, Chris Roy-Smith -- https://mail.python.org/mailman/listinfo/python-list

Re: What's with all of the Case Solution and Test Bank nonsense posts?

2017-07-09 Thread Chris Roy-Smith
On Sun, 09 Jul 2017 21:47:58 -0500, John Black wrote: > In article <477bde19-0653-4e41-a717-0efe90ac5...@googlegroups.com>, > timetowal...@gmail.com says... >> >> I use https://groups.google.com/forum/#!forum/comp.lang.python to look >> over message posts. >> >> What's with all of the Case Solut

Re: Python console rejects an object reference, having made an object with that reference as its name in previous line

2014-12-14 Thread Chris Roy-Smith
On 15/12/14 10:21, Simon Evans wrote: Dear Jussi, and Billy I have changed the input in accordance with your advice, re: -- Python 2.7.6 (default, Nov 10 2013, 19:24:18) [MSC v.1500 32 bit (Intel)] on win here the user

Re: How to access elements in a list of lists?

2011-05-08 Thread Chris Roy-Smith
;, ' ', ' '], [' ', ' ', ' ', ' ', ' ']] grid[2][2] = "X" pprint(grid) [[' ', ' ', ' ', ' ', ' '], [' ', ' ', ' ', ' ', ' '], [' ', ' ', 'X', ' ', ' '], [' ', ' ', ' ', ' ', ' '], [' ', ' ', ' ', ' ', ' ']] cheers James Thanks, that has my understanding problem fixed! And answers what would probably be my next question. Regards Chris Roy-Smith -- http://mail.python.org/mailman/listinfo/python-list

How to access elemenst in a list of lists?

2011-05-08 Thread Chris Roy-Smith
Just learning python. I can see that I can address an individual element of a list of lists by doing something like: row = list[5] element = row[3] But is there a way to directly address an entry in a single statement? Thanks for any help. Regards Chris Roy-Smith -- http://mail.python.org