Created
June 23, 2020 17:20
-
-
Save gunnarx/f4e3551e69926855544ef518a4d9b0e7 to your computer and use it in GitHub Desktop.
This file contains 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
#!/usr/bin/python3 | |
units = [ | |
"A", | |
"N.m", | |
"PS", | |
"UNIX Timestamp", | |
"V", | |
"celsius", | |
"cm", | |
"cm3", | |
"degrees", | |
... and so on | |
x = "min" | |
if x in units: | |
print("Yes, %s is in units" % x) | |
else: | |
print("No, %s is not in units" % x) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment