В стандартном модуле random есть две очень похожие функции
random.randint()
random.randrange()
Обе возвращают случайное значение из указанного диапазона
>>> random.randint(10, 20)
12
>>> random.randrange(10, 20)
17
В чем же отличие?
Дело в том что у randrange() есть третий параметр step.
randint() действительно возвращает случайное число из указанного диапазона.
randrange() на первый взгляд делает тоже самое если передать также два параметра.
Но есть указать еще и step то наш диапазон усложняется, то есть в него попадёт не полный ряд значений.
Например, я хочу получить случайное значение из диапазона но только чётное число. Тогда достаточно сделать так:
>>> randrange(10, 20, 2)
16
Таким образом получается что randint это частный случай randrange без указания параметра step.
Еще одно важное отличие в том, что randint() включает в диапазон второе значение а randrange() нет. То есть выражение randrange(10, 20) никогда не вернёт 20, а randint(10, 20) вернёт.
#tricks#basic
@siftrBot
Qué puede hacer este bot?
Este bot te ayuda a encontrar Bots, Canales y Grupos para explorar. Comienza tocando 'Categorías'.
Idioma: Inglés
(visto en @BotsGram_cu)
#search
📰 Global Keyword Post Search
In the latest version of Telegram Beta for Android, searching posts using keywords is now subject to a daily cap. To find posts, go to Search, select Posts and enter your keyword.
Users receive 10 free keyword searches each day. After that, you must spend 10 stars to unlock two more searches or wait for the next reset. This limit applies to all users including Premium. Non Premium users cannot access keyword searches at all.
This feature is currently available in the test backend.
#Search | #beta v11.14.0
👉The TG Times
📰New Search Bar option
In the latest version of Telegram Beta for Android, you will be able to manage your search bar better than before and find the information that you are looking for easily
#Search | #beta v11.6
👉The TG Times