Re: Unable to completely remove Python 3.10.9 (64 bit) from Computer

2023-10-04 Thread Roland Müller via Python-list
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

Re: ChatGPT Generated news poster code

2023-02-12 Thread Roland Müller via Python-list
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

Re: Return

2021-12-09 Thread Roland Müller via Python-list
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

Re: Simple question - end a raw string with a single backslash ?

2020-10-15 Thread Roland Müller via Python-list
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 :   

Re: Hot reload Flask app?

2020-10-01 Thread Roland Müller via Python-list
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