Created
September 1, 2021 12:13
-
-
Save mteam88/cd46f0ff053ccb2b80202e2d41f43cee to your computer and use it in GitHub Desktop.
CH11Stats#6: Random Colorblindness
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
import random | |
if random.randint(1,10) == 1: | |
print("Colorblind!") | |
else: | |
print("Not Colorblind!") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment