syspy  0.1
syspy windows system information tool with python
syspy.py
Go to the documentation of this file.
1 from sys import exit
2 
3 def play():
4  print("\nSysPy Windows! Exit('q, quit, exit')")
5  print("\nasd\n")
6  while True:
7  c_input = input(">> ")
8  if c_input == 'xyz':
9  print('hihi')
10  elif c_input == 'x':
11  print('haha')
12  elif c_input == 'q' or c_input == 'quit' or c_input == 'exit':
13  print("\nGoodbye!")
14  exit(1)
15 
16 play()
def play()
Definition: syspy.py:3