Posts by Arthur Carvalho Roque • 64 points
3 posts
-
3
votes1
answer366
viewsA: Compound interest in Python using "while"
Let’s forget for a while the lines of code and focus on the logic of the program. Leaving the formulas aside, let’s understand the problem. A monthly compound interest application is nothing more…
-
1
votes1
answer201
viewsA: Receive information from Telebot
Hello! I have been developing some Telegram-bots lately and have been using the framework telepot. In it, the process of receiving and sending messages is very simple and never had problem. To start…
-
0
votes3
answers510
viewsA: Use Selenium without opening browser
Missing to import Options! from selenium import webdriver from selenium.webdriver.chrome.options import Options options = Options() options.add_argument("--headless") driver =…