On 9/23/24 22:51, Dan Sommers via Python-list wrote:
On 2024-09-23 at 19:00:10 +0100,
Barry Scott wrote:
On 21 Sep 2024, at 11:40, Dan Sommers via Python-list
wrote:
But once your code gets big the disciple of using classes helps
maintenance. Code with lots of globals is problematic.
Eve
On 25.9.2023 19.58, Pau Vilchez via Python-list wrote:
Hello Python Team,
I am somehow unable to completely remove Python 3.10.9 (64 Bit) from my
computer. I have tried deleting the Appdata folder then repairing and then
uninstalling but it still persists in the remove/a
Hello,
On 2/11/23 03:31, Greg Ewing via Python-list wrote:
For a moment I thought this was going to be a script that
uses ChatGPT to generate a random news post and post it
to Usenet...
Which would also have been kind of cool, as long as it wasn't
overused.
Actually, I like cynical humor too
Hello,
On 12/8/21 11:29, vani arul wrote:
Thanks for your help.
I am not good at programming.My code works perfectly.But I am bit
confused about the return values.
Binary Search Program
/def Binarysearch(a,key):
l=0
r=len(a)-1
while l<=r:
med = (l+r)//2
if key==a
On 10/13/20 4:14 PM, Serhiy Storchaka wrote:
13.10.20 11:52, Tony Flury via Python-list пише:
I am trying to write a simple expression to build a raw string that ends
in a single backslash. My understanding is that a raw string should
ignore attempts at escaping characters but I get this :
On 2020-10-01 16:33, sjeik_ap...@hotmail.com wrote:
Hi,
I would like to create a "/reload" view in my Flask app, so I could easily
and safely reload it when code, templates etc change. Similar to what
happens when running the app with the debug server. I am using Nginx and
G