global user_id
list.index(x[, start[, end]])
Return zero-based index in the list of the first item whose value is equal to x. Raises a ValueError if there is no such item.
The optional arguments start and end are interpreted as in the slice notation and are used to limit the search to a particular subsequence of the list. The returned index is computed relative to the beginning of the full sequence rather than the start argument.
for i_row, row in enumerate(grid): # row == grid[i_row]
for i_col, value in enumerate(row): # value == row[i_col]
# далее сам
if ... if ... if ... print()
, а if ... elif ... elif ... else: print()
if c != "множення" and "додавання" and "віднімання" and "ділення" :
if x != 2 or 3:
эквивалентен if (x != 2) or (3 != 0):
, что, в свою очередь даёт if (x != 2) or True:
. А что угодно or True даст True, т.е. условие будет всегда выполняться.if x != 2 and x != 3:
или if x not in (2, 3):
Max number of daily application command creates has been reached
# import required libraries
from vidgear.gears import ScreenGear
import cv2
# open video stream with default parameters
stream = ScreenGear().start()
while True:
# read frames from stream
frame = stream.read()
# check for frame if Nonetype
if frame is None:
break
# {do something with the frame here}
# Show output window
cv2.imshow("Output Frame", frame)
# check for 'q' key if pressed
key = cv2.waitKey(1) & 0xFF
if key == ord("q"):
break
# close output window
cv2.destroyAllWindows()
# safely close video stream
stream.stop()
a = (sum(new_matrix[i]) for k in range(matrix_1_height))
for i in a
, и значения будут сгенерированы и получены - но если попробуешь тут же прогнать цикл ещё раз на том же выражении, то не получишь ничего.b = [sum(new_matrix[i]) for k in range(matrix_1_height)]
a = (sum(new_matrix[i]) for k in range(matrix_1_height))
b = list(a) # прогоняем генератор и превращаем его в список
tarot_list = [
('image1.jpg', 'Текст 1'),
('image2.jpg', 'Текст 2'),
]
image, text = random.choice(tarot_list)
await Bot.send_message(message.from_user.id, message.text)
class Test:
def test(self, x):
print(f"Я {self} и я получил {x}")
t = Test() # создаём экземпляр
t.test(42) # Я <__main__.Test object at 0x000001BB195CBC70> и я получил 42
# это тоже сработает, и это практически эквивалентно вызову выше
Test.test(t, 42) # Я <__main__.Test object at 0x000001BB195CBC70> и я получил 42
# а это - то, что попытался сделать ты:
Test.test(42) # TypeError: Test.test() missing 1 required positional argument: 'x'
# потому что вызван метод класса, а не объекта, и его первый параметр (42) интерпретирован как self
a = [1, 2, 3]
b = [1, 2, 3]
print(a == b) # True - списки имеют одинаковое содержимое
print(a is b) # False - a и b ссылаются на разные объекты-списки, а не на один и тот же.
a = 1
b = 1.0
print(isinstance(a, int), isinstance(a, float)) # True False - a это int, но не float
print(isinstance(b, int), isinstance(b, float)) # False True - b это не int, это float
print(isinstance(a, (int, float))) # True - a является чем-то из двух: или int, или float
photo=message.photo[0].file_id