image_folder = 'D:/фотки для питона'
images = [os.path.join(image_folder, f) for f in os.listdir(image_folder) if f.endswith('.jpg')]
@bot.message_handler()
def get_user_text(message):
if message.text == "привет":
bot.send_message(message.chat.id, "Приветсвую", parse_mode='html')
elif message.text == 'получить фото':
photo = open(random.choice(images), 'rb')
bot.send_photo(message.chat.id, photo, caption='Лови')
elif message.text == "рандомные фото":
photos = [open(image, 'rb') for image in random.sample(images, 3)]
bot.send_media_group(message.chat.id, [telebot.types.InputMediaPhoto(photo) for photo in photos])
import random
ABC = ['А', 'Б', 'В', 'Г', 'Д', 'Е', 'Ё', 'Ж', 'З', 'И', 'К', 'Л', 'М', 'Н', 'О', 'П', 'Р', 'С', 'Т', 'У', 'Ф', 'Х', 'Ц', 'Ч', 'Ш', 'Щ', 'Ъ', 'Ы', 'Ь', 'Э', 'Ю', 'Я']
A = ['А', 'Е', 'Ё', 'И', 'О', 'У', 'Ы', 'Э', 'Ю', 'Я']
B = ['Б', 'В', 'Г', 'Д', 'Ж', 'З', 'К', 'Л', 'М', 'Н', 'П', 'Р', 'С', 'Т', 'Ф', 'Х', 'Ц', 'Ч', 'Ш', 'Щ']
creature = ''
while True:
fish = random.choices(ABC, k=8)
for i in range(2, len(fish)):
if fish[i] in A and fish[i-1] in A and fish[i-2] in A:
break
if fish[i] in B and fish[i-1] in B and fish[i-2] in B:
break
else:
creature = ''.join(fish)
break
print(creature)
while True
, чтобы генерировать случайные последовательности букв, пока не будет найдена последовательность, которая удовлетворяет условиям.random.choices,
которой передаем список ABC
и длину последовательности k
.for
и оператор if
. Если мы находим такие сочетания, мы выходим из цикла с помощью оператора break
. Если недопустимых сочетаний нет, мы объединяем выбранные буквы в итоговую строку creature
с помощью метода join
и выходим из цикла while True
с помощью оператора break
.print
. vector=[]#Создаем ПУСТОЙ список, в котором вообще нет ни одного элемента.
vector[i] *= a[i][j]# Ну предположим i=0. Но элемента vector[0] (впрочем, как и vector[1], vector[2].....) у вас нет - список, как я разъяснил выше, ведь пустой.
v*=aэквивалентна
v=v*a. Вопрос - что-же вы желаете получить, умножая
vector[i] = vector[i]* a[i][j]-- еще раз, если элементов vector[i] с любым i у вас не существует.
cards_hrefs
, titles
, prices
).for items in data:
cards = data.find_all("div", class_="card-body")
for card in cards:
catalog.append({
"link to the product": "https://scrapingclub.com" + card.find("a").get("href"),
"title": card.find("h4").text.strip(),
"price": card.find("h5").text.strip()
})
data = soup.find("div", class_="row my-4")
catalog = []
cards = data.find_all("div", class_="card-body")
for card in cards:
catalog.append({
"link to the product": "https://scrapingclub.com" + card.find("a").get("href"),
"title": card.find("h4").text.strip(),
"price": card.find("h5").text.strip()
})