Posts by Science and society • 15 points
2 posts
-
0
votes1
answer106
viewsQ: Application for login on another site (Facebook), error "Invalidsubmiterror"
My code is this: import robobrowser import re url = 'https://m.facebook.com' loggedin_title = 'Facebook' # isto vai servir para confirmarmos que estamos loggedin, vendo o titulo da pagina para onde…
-
1
votes2
answers247
viewsQ: How to sort a list by the number of occurrences? In Python
Like, I have a list like this: lista = [1,1,2,3,3,3] And I want to order her to stay lista = [3,3,3,1,1,2] That is, the most occurring values would be at the beginning of the list, while the least…