https://github.com/torvalds/linux
Raw File
Tip revision: dc3093520e0586799052851d37ad2d8f6093a39f authored by Gurseerit on 14 September 2019, 17:33:48 UTC
created survey.py
Tip revision: dc30935
survey.py
import sys
var = int(input("Do you use linux y/n"))
if var == "y":
  print("thanks :)")
if var == "n":
  print("you should :<")
sys.exit()
back to top