def deal_card(): cards = [11, 2, 3, 4, 5, 6, 7, 8, 9, 10, 10, 10, 10] card = random.choice(cards) return card def calculate_score(cards): if sum(cards) == 21 ...
Ошибка при создание бота: updater = Updater(TOKEN) TypeError: Updater.__init__() missing 1 required positional argument: 'update_queue' Подскажите как исправить?
Меня одного напрягает тема списки def в питоне?)
Как открывать файлы db(базы данных)в pycharm?
Привет, почему не работает в коде print? class User: def __int__(self): print("new user”)
Подскажите почему не отображает print в коде? class Bottle: def __int__(self, volume, type_): self.volume = volume self.type = type def pour(self): ...
def my_function(*kids): print(kids) my_function("Emil", "Tobias", "Linus") Что значит знак *?