Re: [Tutor] Coma separated instead TAB separated

2014-06-09 Thread Mario Py
Thank you Alan, so simple solution! Just show how little I know! >> You should probably use the csv module instead << For now split should be OK, in the future I will try to learn CVS module. OK I understand, new subject, new post, thanks again Mario On 6/8/2014 5:33 PM, Alan Gauld wrote:

Re: [Tutor] Coma separated instead TAB separated

2014-06-09 Thread Mario Py
Steven, How about "," for comma? LOL! I didn't know, now I know :-) Thank you also for all additional info. I printed it out! Here is a list of the escape sequences allowed: \a BEL (bell) \b BS (backspace) \f FF (formfeed) \n LF (linefeed or newline) \r CR (carriag

[Tutor] Introduction

2014-06-09 Thread JERIN JACOB
Dear friends I am new to the mailinglist, i hope all the supports ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: https://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] SHA256 P2P Chat in python

2014-06-09 Thread Lukas Nemec
Hi, I did a similar thing recently, a chat, that encrypts and signs (for authenticity) each message sent with private-pub keypair: https://github.com/lunemec/python-chat. It is not p2p, it sends messages to server, which decrypts them, encrypts with its pubkey and sends to all clients for de