Никитин Олег Юрьевич 127сп_кт RndSwissknife 16138
СОКОЛОВ ВАСИЛИЙ ВЛАДИСЛАВОВИЧ 341 RndSwissknife 17160
f1import randomf1import random
n2from collections.abc import Iterablen2from collections.abc import Sequence, Iterable
3from collections.abc import Sequence
43
5def rnd(a, b=None):4def rnd(a, b=None):
6    match (a, b):5    match (a, b):
7        case [int(), None]:6        case [int(), None]:
8            return random.randint(0, a)7            return random.randint(0, a)
9        case [int(), int()]:8        case [int(), int()]:
10            return random.randint(a, b)9            return random.randint(a, b)
11        case [float(), int() | float()]:10        case [float(), int() | float()]:
12            return random.uniform(a, b)11            return random.uniform(a, b)
13        case [str(), int()]:12        case [str(), int()]:
t14            start = random.randint(0, len(a) - b)t13            x = random.randint(0, len(a) - b)
15            return a[start:start + b]14            return a[x:x + b]
16        case [str(), None]:15        case [str(), None]:
17            return random.choice(a.split())16            return random.choice(a.split())
18        case [str(), str()]:17        case [str(), str()]:
19            return random.choice(a.split(b))18            return random.choice(a.split(b))
20        case [Iterable(), None]:19        case [Iterable(), None]:
21            return random.choice(list(a))20            return random.choice(list(a))
22        case [Iterable(), int()]:21        case [Iterable(), int()]:
23            return random.choices(list(a), k=b)22            return random.choices(list(a), k=b)
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op