Демихов Валентин, 611 группа RndSwissknife 15954
Каплан Владимир Сергеевич 611 ВМК RndSwissknife 16833
f1import randomf1import random
2from collections.abc import Sequence, Iterable2from collections.abc import Sequence, Iterable
33
n4def rnd(ab=None):n4def rnd(xy=None):
5    match (ab):5    match (xy):
6        case [int(), int()]:6        case [int(), int()]:
n7            return random.randint(ab)n7            return random.randint(xy)
8        case [int(), None]:8        case [int(), None]:
n9            return random.randint(0, a)n9            return random.randint(0, x)
10        case [float(), _] | [_, float()]:10        case [float(), _] | [_, float()]:
n11            return a + (b - a) * random.random()n11            return x + (y - x) * random.random()
12        case [str(), int()]:12        case [str(), int()]:
n13            start = random.randint(0, len(a) - b)n13            z = random.randint(0, len(x) - y)
14            return a[start:start + b]14            return x[z:z + y]
15        case [str(), str()]:15        case [str(), str()]:
n16            return random.choice(a.split(b))n16            return random.choice(x.split(y))
17        case [str(), None]:17        case [str(), None]:
t18            return random.choice(a.split())t18            return random.choice(x.split())
19        case _ if isinstance(a, (Sequence, Iterable)) and isinstance(b19        case _ if isinstance(x, (Sequence, Iterable)) and isinstance(y
>int):>int):
20            return random.choices(list(a), k=b)20            return random.choices(list(x), k=y)
21        case _ if isinstance(a, (Sequence, Iterable)):21        case _ if isinstance(x, (Sequence, Iterable)):
22            return random.choice(list(a))22            return random.choice(list(x))
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op