randstring = 'test'.join(random.choices(string.digits, k=2))
I want to generate the text as test1,test3. The specific text is 'test' and along with that I want to generate random numbers. I tried the above statement but result is like '1test3' and not 'test1,test3'.