Questions tagged as 'python'

1
answer

Because I can not get the cookies [closed]

from http.cookiejar import * from urllib.request import * test = CookieJar() abridor = build_opener(HTTPCookieProcessor(test)) abridor.addheaders = [('User-agent', 'Mozilla/5.0 (Windows NT 10.0; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0')] abri...
asked by 30.05.2017 / 23:11
1
answer

solve list of names python bubble method

Good I have a job to do programming in python I have half finished but I need help with the bubble method to order a list of alphabetically given nonbres by the user I have the part of the list asking the user the names eh print them but the bub...
asked by 01.11.2016 / 16:57
3
answers

Add naturals to "n" [closed]

I want to implement a def suma_naturales_hasta(n) function. For this I could use a for loop that would go through the number that I entered, that is, if I put 3, that the sum is 1 + 2 + 3. How could I implement this for...
asked by 07.11.2017 / 20:06
0
answers

Reading of values written on contactless card in Python

I have used the following code to obtain the UID of a contactless card but I can not read the values recorded inside it. I would like to read all the values that you have written in your records. from smartcard.scard import * hresult, hcon...
asked by 19.12.2016 / 11:54