Given the following string
string = 'SATSUNMONTUEWEDTHUFRI'
If I wanted to randomly select a character/s I can accomplish that using random.choices() For example, here I'm selecting 5 characters
rs = random.choices(string, k = 5)
But, what if I wanted to select 5 subsequent characters. One possible result is:
[SATSU]
How can I accomplish this?