Skip to content

Instantly share code, notes, and snippets.

@davidsaccavino
Created May 3, 2018 04:54
Show Gist options
  • Save davidsaccavino/b86c2cb21dff1d563d628f6ef98e0558 to your computer and use it in GitHub Desktop.
Save davidsaccavino/b86c2cb21dff1d563d628f6ef98e0558 to your computer and use it in GitHub Desktop.
#! python 3
# thebois.py - checks if someone is ya boi
import re
inputName = input('What\'s yo bois name? ')
inputParams1 = input('Does ya boi hit u up often fam? ')
if inputParams1 == 'yes' or inputParams1 == 'y' or inputParams1 == 'Yes':
inputParams2 = input('Is he really ya boi tho fam???? ')
if inputParams2 == 'yes' or inputParams2 == 'y'or inputParams2 == 'Yes':
inputParams3 = input('frfr thooo???! ')
if inputParams3 == 'yes' or inputParams3 == 'y' or inputParams3 == 'Yes':
print('%s ya boi, fam!' % inputName)
else:
print('nt loser he aint ya boi')
else:
print('nt loser he aint ya boi')
else:
print('nt loser he aint ya boi')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment