6.py 208 B

123456789101112
  1. import ink
  2. print('Once upon a time...')
  3. index, val = ink.choice(
  4. 'There were two choices.',
  5. 'There were four lines of content.'
  6. )
  7. print(f'You selected {index}')
  8. print('They lived happily ever after.')