Created
May 3, 2018 04:54
-
-
Save davidsaccavino/b86c2cb21dff1d563d628f6ef98e0558 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! 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