Predict the output
from random import choice
options = ['Read WB Book',
'Charting',
'Practice on SoloLearn',
'Python Video']

dothis = choice(options)
print(f"You should Do This: {dothis}")

Posted on by