Re: https://www.python.org/ seems to be down

2014-09-26 Thread Rock Neurotiko
ication of the SSL certificate, all certificates have an start and end date, if you are not in that range, your browser don't verify it (that's to prevent malicious SSL certs). -- Miguel García Lafuente - Rock Neurotiko Do it, the devil is in the details. The quieter you are, the mor

Re: https://www.python.org/ seems to be down

2014-09-26 Thread Rock Neurotiko
em. > Alternatively, use the command found in the help menu to report this broken > site. > > Shiva > > -- > https://mail.python.org/mailman/listinfo/python-list > Check your local date, usually that happens when you don't have it right. -- Miguel García Lafuente - Ro

Re: https://www.python.org/ seems to be down

2014-09-25 Thread Rock Neurotiko
2014-09-26 8:46 GMT+02:00 Gmane : > https://www.python.org/ http://www.downforeveryoneorjustme.com/python.org -- Miguel García Lafuente - Rock Neurotiko Do it, the devil is in the details. The quieter you are, the more you are able to hear. Happy Coding. Code with Passion, Decode w

Re: Best way to deal with different data types in a list comprehension

2014-09-23 Thread Rock Neurotiko
ut rewriting this without the list comprehension, how can I write > this to deal with both strings and non-strings? > -- > https://mail.python.org/mailman/listinfo/python-list > -- Miguel García Lafuente - Rock Neurotiko Do it, the devil is in the details. The quieter you are, the more you

Re: Python is going to be hard

2014-09-03 Thread Rock Neurotiko
\blank.py", line 7, in > print (steve[x]) > IndexError: list index out of range > -- > https://mail.python.org/mailman/listinfo/python-list > -- Miguel García Lafuente - Rock Neurotiko Do it, the devil is in the details. The quieter you are, the more you are able to hear

Re: Collaps arrays/ list of intergers

2014-08-19 Thread Rock Neurotiko
> > Is your question about (a) identifying overlapping subsets of ranges, > or (b) collapsing such subsets once you have identified them? > > What output would you want if the inputs were . . . > > a = [1,50] > b = [2,10] > c = [40,60] > > ? > > -- > To email m

Re: error with files

2014-08-18 Thread Rock Neurotiko
7;/home/yems/newfile/' > file_name = raw_input("Enter file name: ") > filesname = os.path.join(save_here, file_name+".txt") > > file1 = open(filesname, 'w') > > file_data = raw_input('write in data: ') > > file.write(file1) > > file1.cl