cyclik_ascii_lvl3

def cyclik_ascii_lvl3(current)

Algorithm

Compute a cyclik ascii separators into Upper letters from A to L. Get a third cyclic ascii set modulo length

Parameters

Type

Description

current

str

The current poncuation separator

Returns

str : The following separator from the defined ‘sep’ Set.


Source Code

sep=['A','B','C','D','E','F','G','H','I','J','K','L']
tmp=r.randint(0,11)
res = sep[tmp]
return res