import random

life = 1

experience = {

'success': 'failures',

'wisdom': 'heartache',

'strength': 'pain',

}

if life > 0:

print(random.choice(list(experience.values())))

else: print('R.I.P.')

Reply to this note

Please Login to reply.

Discussion

No replies yet.