I need help with the output I'm getting in the function. I have pasted the code below:
def follower_data():
random_lenght = int(random.randint(0,49))
return data[(random_lenght)]['name'], data[(random_lenght)]['description'], data[(random_lenght)]['country']
data = follower_data()
print(f"Compare A: {data}" )
Output:
Compare A: ('Billie Eilish', 'Musician', 'United States')
But I want the output to be:
Compare A: Billie Eilish, Musician, United States