X Tutup
#!/usr/bin/env python # coding=utf-8 import sys #sys.exit("hello") for i in range(10): if i == 5: sys.exit() else: print(i)
X Tutup