the connection is terminated when the user enter 'quit' in python code example
Example: the connection is terminated when the user enter 'quit' in python
1
2
3
4
5
6
7
8
import sys
def main():
try:
process()
except Exception as ex:
print(ex)
sys.exit(1)