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