Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
from time import sleep
print ('Slowly, the realisation of what being jobless really meant started creeping in.')
sleep(3) #This delays next command
print ('The more John contemplated the unfairness of his fate, the worse he felt.')
sleep(3)
print ('His life lost sense.')
sleep(3)
print ('He didn’t know what to do.')
sleep(3)
print ('He felt like he lost everything. His job was his passion and now it’s gone.')
sleep(3)
print ('Out of despair, he decided to end his life.')
sleep(3)
print ('Nothing could stop him.')
sleep(3)
print ('He hated life.')
sleep(3)
print ('Why was it so unfair? What else was he supposed to do?')
sleep(3)
print ('He decided life was not for him and that he will let it END.')
sleep(3)
print ('\nHe thought about it and decided to either:')
print ('A: jump of a bridge')
print ('or')
print ('B: jump under a train.')
choiceJump= 'c'
#This is an anti-cheat for those who don't write what they have to.
while choiceJump != "a" or choiceJump != "A" or choiceJump != 'b' or choiceJump != 'B':
choiceJump = input ('\nA or B? ')
if choiceJump == "a" or choiceJump == "A" or choiceJump == 'b' or choiceJump == 'B':
break
if choiceJump == "a" or choiceJump == "A":
print('He took his backpack and filled it with rocks.')
sleep(3)
print('His hand were shaking and he was weeping. But he was determined to do this.')
sleep(3)
print('Once the backpack was full and heavy he put it on and he walked all the way to the bridge.')
sleep(4)
print('He didn’t hesite for a second and threw himself down into the water.')
sleep(3)
print('A little girl who was playing with a dog on the river bank screamed in fright.')
sleep(3)
print('And then nothing could be heard but silence.')
sleep(3)
print('\nTHE END')
elif choiceJump == 'b' or choiceJump == 'B':
print('He was not only mad at himself.')
sleep(3)
print('He was mad at the whole world.')
sleep(3)
print('What kind of suicide could be better than jumping under a train?')
sleep(3)
print('Let’s annoy some innocent employed people commuting to work with some train delay.')
sleep(4)
print('He picked probably the best train. The train heading to the capital at 7am.')
sleep(3)
print('Full of people who don’t want to be late for work.')
sleep(3)
print('He got up early, put on his best clothes and set off.')
sleep(3)
print('The train was already 5 minutes late, but he did not change his mind.')
sleep(4)
print('He was determined to do it.')
sleep(3)
print('When he could see the train was approaching he lay down on the track.')
sleep(3)
print('In a moment, he was dead.')
sleep(3)
print('\nTHE END')