created survey.py

...
This commit is contained in:
Gurseerit 2019-09-14 18:33:48 +01:00 committed by GitHub
parent a7f89616b7
commit dc3093520e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

7
survey.py Normal file
View File

@ -0,0 +1,7 @@
import sys
var = int(input("Do you use linux y/n"))
if var == "y":
print("thanks :)")
if var == "n":
print("you should :<")
sys.exit()