Re: Convert MBOX thunderbird to PST outlook

2021-02-08 Thread Christian Gollwitzer
Am 08.02.21 um 11:08 schrieb J.O. Aho: On 08/02/2021 10.22, Paul Rubin wrote: "J.O. Aho" writes: I think most migrated to use IMAP like 30 years ago That handles email but not calendar or the other stuff.  I think there are starting to be standards for that, but no idea whether either Thund

Re: Files can only be modified in IDLE, but not via Powershell

2021-02-08 Thread MRAB
On 2021-02-08 21:33, Stefan Ritter wrote: Hi, It would be highly appreciated if you could offer me some advice to solve a problem I'm currently facing: I have a Windows 10 ADM64 desktop and a Windows 10 AMD64 Laptop. I wrote some code to insert text in a .txt-file. It works perfectly on my la

RE: Convert MBOX thunderbird to PST outlook

2021-02-08 Thread pjfarley3
I can recommend the commercial product Aid4Mail from my personal experience moving from another mbox-based email client (not Thunderbird) to Outlook (though that was a few years back, well before Outlook 365 became available). Very well supported and responsive, very reasonably priced at the tim

Files can only be modified in IDLE, but not via Powershell

2021-02-08 Thread Stefan Ritter
Hi, It would be highly appreciated if you could offer me some advice to solve a problem I'm currently facing: I have a Windows 10 ADM64 desktop and a Windows 10 AMD64 Laptop. I wrote some code to insert text in a .txt-file. It works perfectly on my laptop. On my desktop it works only if i ru

Re: Convert MBOX thunderbird to PST outlook

2021-02-08 Thread J.O. Aho
On 07/02/2021 15.06, Kr4ck ALI wrote: Hello, I have to migrate multiple mailbox (emails, contacts, calendar, tasks) from thunderbird to outlook Office 365. I'm sorry to hear that. I plan to export all items from thunderbird files (.mbox for email, .sqlite or .sdb for calendar, .mab to con

Re: Python cannot count apparently

2021-02-08 Thread Michael F. Stemper
On 08/02/2021 13.12, Schachner, Joseph wrote: This code works: mystr = "hello" for ch in mystr: print(ch, end="") result is: hello Note that the for loop does not use range. Strings are iterable, that is they support Python's iteration protocol. So, for ch in mystr: assign

RE: Python cannot count apparently

2021-02-08 Thread Schachner, Joseph
This code works: mystr = "hello" for ch in mystr: print(ch, end="") result is: hello Note that the for loop does not use range. Strings are iterable, that is they support Python's iteration protocol. So, for ch in mystr: assigns one character from mystr to ch each time, each i

Re: Python cannot count apparently

2021-02-08 Thread Michael F. Stemper
On 07/02/2021 13.34, Philipp Daher wrote: Hello, I recently coded this snippet of code: myString=„hello“ for i in range(len(myString): print(string[i]) And now for the weird part: SOMETIMES, the output is this: hello Strange. When I fix the errors in what you posted: - wrong character

Re: Convert MBOX thunderbird to PST outlook

2021-02-08 Thread J.O. Aho
On 08/02/2021 10.22, Paul Rubin wrote: "J.O. Aho" writes: I think most migrated to use IMAP like 30 years ago That handles email but not calendar or the other stuff. I think there are starting to be standards for that, but no idea whether either Thunderbird or Outlook follows them. Yes,

Re: Log exception so traceback contains timestamp and level?

2021-02-08 Thread Peter Otten
On 07/02/2021 16:12, Peter J. Holzer wrote: On 2021-02-06 21:01:37 -0600, Skip Montanaro wrote: The logging package can log exceptions and call stacks, but it does (in my opinion) a suboptimal job of it. Consider this simple example: import logging FORMAT = '%(asctime)-15s %(levelname)s %(messa