Posts by Jonathan Deptulsqui • 35 points
4 posts
-
0
votes1
answer2453
viewsA: Python - how to create spreadsheet in excel (with 100 columns)
Solved! I don’t know if this was the best way to solve, but I was able to develop so: from openpyxl import Workbook import string book = Workbook() sheet = book.active nome_xlsx = 'teste.xlsx'…
-
1
votes1
answer2453
viewsQ: Python - how to create spreadsheet in excel (with 100 columns)
Good afternoon! I already know how to create a spreadsheet in Excel by Python, when I know exactly which columns I need to create. But how can I make the creation of columns dynamic? for example: to…
-
1
votes2
answers379
viewsQ: How to search for partial text in a string list?
I have a list with several text elements, and I would like to know how I can find one of these elements by searching for a part of the text and not by the exact text. Example: Lista = ['Jorge…
-
-1
votes1
answer990
viewsQ: Python (pyautogui / Selenium) save selected text
Good afternoon! I’m having a doubt here and I’d really like some help: I’m doing some tests here in python, automating the login to instagram, accessing the followers page and selecting the names…