Python Forum
Search Results
Post Author Forum Replies Views Posted [asc]
    Thread: Arc_AntsHunt: Game Developed In Python Arcade
Post: RE: Arc_AntsHunt: Game Developed In Python Arcade

(Apr-24-2021, 04:04 PM)joe_momma Wrote: sounds interesting but: Quote:adt28 doesn’t have any public repositories yet. fallowing your link **wall** Thanks for kindly pointing out. The status of all m...
adt Code sharing 2 4,457 Apr-24-2021, 06:05 PM
    Thread: Arc_AntsHunt: Game Developed In Python Arcade
Post: Arc_AntsHunt: Game Developed In Python Arcade

Link to github page listing this repository along with other ones: Arc_AntsHunt This game, developed in python arcade, demonstrates intelligent activities by a group of ants. In idle state, there ar...
adt Code sharing 2 4,457 Apr-24-2021, 02:44 PM
    Thread: Tkinter Tic Tac Toe With Enhanced Features - Completed
Post: RE: Tkinter Tic Tac Toe With Enhanced Features - C...

(Dec-10-2019, 06:07 AM)michael1789 Wrote: Nice little program. Glad you liked it. Thanks for kindly trying it out.
adt Code sharing 2 2,939 Dec-10-2019, 06:22 AM
    Thread: Tkinter Tic Tac Toe With Enhanced Features - Completed
Post: Tkinter Tic Tac Toe With Enhanced Features - Compl...

My first python project, an advanced version of Tic Tac Toe on Tkinter, incorporating enhanced features, can be downloaded at the following link: Tkinter Tic Tac Toe-MulltiBoard Variable Strength I w...
adt Code sharing 2 2,939 Dec-10-2019, 03:18 AM
    Thread: Tkinter Tic Tac Toe With Enhanced Features – Suggestions Invited
Post: Tkinter Tic Tac Toe With Enhanced Features – Sugge...

As my first python project, I intend to develop an advanced version of Tic Tac Toe on Tkinter, incorporating enhanced features for better user experience. I would be thankful for your kind suggestion...
adt Code sharing 0 2,954 Dec-06-2019, 03:10 PM
    Thread: Global Variables - Some Points Needing Clarification.
Post: RE: Global Variables - Some Points Needing Clarifi...

(Nov-30-2019, 12:31 PM)Gribouillis Wrote: a class is an elementary component and it can be easily created even for a single instance My sincere thanks for your kind advice. I would try to adapt the ...
adt General Coding Help 4 2,990 Nov-30-2019, 01:23 PM
    Thread: Global Variables - Some Points Needing Clarification.
Post: RE: Global Variables - Some Points Needing Clarifi...

(Nov-30-2019, 07:58 AM)Gribouillis Wrote: I think strategy (b) is perfectly acceptable.Thanks for your kind confirmation. Regarding the suggestion: Quote:instead of passing explicitly the global ob...
adt General Coding Help 4 2,990 Nov-30-2019, 12:03 PM
    Thread: Global Variables - Some Points Needing Clarification.
Post: Global Variables - Some Points Needing Clarificati...

Note: This is in context of a self contained module, having some functions which are not meant to be called by any other module. As per recommended practice, use of module level variables in an assig...
adt General Coding Help 4 2,990 Nov-30-2019, 05:27 AM
    Thread: Python 3.8 -- mysql-connector error
Post: RE: Python 3.8 -- mysql-connector error

(Oct-26-2019, 02:57 PM)buran Wrote: check this - Thanks buran. The problem stands resolved. It is found that whereas mysql-connector was adequate for python 3.7.4, it is necessary to install mysql-...
adt News and Discussions 4 10,057 Oct-26-2019, 03:17 PM
    Thread: Python 3.8 -- mysql-connector error
Post: Python 3.8 -- mysql-connector error

In my earlier post, it was reported that pip install of some packages fails in case of python 3.8, while there is no such problem for python 3.7.4 It is further observed that in case of mysql-connect...
adt News and Discussions 4 10,057 Oct-26-2019, 01:55 PM
    Thread: Python 3.8 - Some Packages No Longer Accepted ?
Post: Python 3.8 - Some Packages No Longer Accepted ?

It is observed that for some packages (e.g. auto-py-to-exe, scipy, matplotlib etc), pip install is not successful, whereas there is no such problem in Python 3.7.4 Downloading of content appears to ...
adt News and Discussions 1 2,634 Oct-20-2019, 12:27 PM
    Thread: Question about list and while function
Post: RE: Question about list and while function

If values of a & b are not restricted to within 10 (while their difference is so), and padding of zero values is only to be on the right side, you could try the following: a = 12 b = 18 mlist= [a...
adt General Coding Help 6 2,787 Oct-11-2019, 12:02 PM
    Thread: Question about list and while function
Post: RE: Question about list and while function

(Oct-11-2019, 03:54 AM)doug2019 Wrote: the problem is that list must always have 10 elements and "a" and "b" will be input by the user Will this meet your needs? a = 1 b = 5 mlist= [0]*(a - 1) + [a...
adt General Coding Help 6 2,787 Oct-11-2019, 08:45 AM
    Thread: Merging Dictionaries - Optimum Style?
Post: RE: Merging Dictionaries - Optimum Style?

For merging multiple dictionaries, proposed function dics_merge(), that alerts the user regarding presence of duplicate keys, affording option to permit overwriting or not, is placed below: # Merge D...
adt General Coding Help 5 2,988 Oct-09-2019, 05:26 PM
    Thread: Merging Dictionaries - Optimum Style?
Post: RE: Merging Dictionaries - Optimum Style?

(Oct-09-2019, 07:07 AM)buran Wrote: clearly, star unpacking is faster Thanks for your kind confirmation along with the speed test. It is nice to know that star unpacking, apart from being the simple...
adt General Coding Help 5 2,988 Oct-09-2019, 08:09 AM
    Thread: Merging Dictionaries - Optimum Style?
Post: Merging Dictionaries - Optimum Style?

Based upon available information on the internet, it seems that different dictionaries can be merged either by using double asterisk operator or by update method. While the double asterisk method lo...
adt General Coding Help 5 2,988 Oct-09-2019, 06:45 AM
    Thread: VS-Code - Maximizing Horizontal Space For Editor
Post: RE: VS-Code - Maximizing Horizontal Space For Edit...

(Oct-07-2019, 07:59 AM)buran Wrote: Virtually all the screen real estate is edit pane You are right. Zen mode was the culprit. Problem stands resolved. My sincere thanks for your kind help.
adt News and Discussions 8 4,021 Oct-07-2019, 08:28 AM
    Thread: VS-Code - Maximizing Horizontal Space For Editor
Post: RE: VS-Code - Maximizing Horizontal Space For Edit...

(Oct-07-2019, 07:03 AM)buran Wrote: And here is a full screen mode with mini map hidden. Thanks for posting the images. However, all the three are getting displayed as pure black rectangles. I hav...
adt News and Discussions 8 4,021 Oct-07-2019, 07:38 AM
    Thread: VS-Code - Maximizing Horizontal Space For Editor
Post: RE: VS-Code - Maximizing Horizontal Space For Edit...

(Oct-07-2019, 05:45 AM)buran Wrote: collapsing Explorer, probably hiding activity bar and mini map and going into Full screen mode would yield more real estate than the zen mode The screen shot subm...
adt News and Discussions 8 4,021 Oct-07-2019, 06:23 AM
    Thread: VS-Code - Maximizing Horizontal Space For Editor
Post: RE: VS-Code - Maximizing Horizontal Space For Edit...

(Oct-07-2019, 05:06 AM)Larz60+ Wrote: This is one case where an image would help. Thanks for kindly looking into it. Screenshot is placed below: [Image: https://drive.google.com/open?id=1Qm09Q1...7...
adt News and Discussions 8 4,021 Oct-07-2019, 05:41 AM

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020