Группой ежедневно пользуются от 100 до 3000 человек
>>> class Commands():
... def print_msg(self, msg):
... print(msg)
... print("".join(reversed(msg)))
...
>>> commands = Commands()
>>> commands.print_msg("foo")
foo
oof
>>>
for
срабатывает только 1 раз и после завершает свою работу. Если вы хотите выводить все результаты итерации, то нужно print(i)
with open('file.txt', 'w') as f:
f.write('some text\n')
pip install playsound
import time
from playsound import playsound
while True:
start = input("Начать? [Y/N/]:")
clockers = 3600
timer = None
if start.lower() == "y":
print(time.asctime())
print("Отсчитываю 1 час...")
elif start.lower() == "n":
timer = input("Хотите завести другой таймер? [Y/N]:")
if timer.lower() == "y":
while True:
clockers = input("На сколько секунд поставить таймер?:")
try:
isinstance(int(clockers), int)
break
except ValueError:
print("Повторите ввод. Необходимо ввести число.")
print("Таймер заведён на " + str(clockers) + " секунд ")
if start.lower() not in ["y", "n"] and timer != "y":
print("Ошибка! Вы будете возвращены в начальное меню")
continue
time.sleep(int(clockers))
print("время вышло")
playsound("D:/test.mp3")
break
questions = db.execute('SELECT * FROM QUESTIONS')
question = random.choice(questions)
answered_ids = db.execute('SELECT answered_ids FROM USERS WHERE (user_id IS ?)', (callback_query.from_user.id,))
questions = db.execute('SELECT * FROM QUESTIONS WHERE id != IN(?)', (answered_ids,))
import json
data = {"query": "...", "variables": "..."}
headers = {
"Accept": "application/json",
"Content-Type": "application/json"
}
response = requests.post(url, data=json.dumps(data), headers=headers)
if db.total_changes > 0:
print('Insertion category {} with sub_category {} complete'.format(value, categories[index]))
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
caps = DesiredCapabilities().FIREFOX
caps['pageLoadStrategy'] = 'eager'
driver = webdriver.Firefox(desired_capabilities=caps)
pageLoadStrategy
позволяет определить стоит дожидаться полной загрузки, или нет.