Download Latest Version telnet.zip (2.6 kB)
Email in envelope

Get an email when there's a new version of stopAborcji

Home
Name Modified Size InfoDownloads / Week
readme.py 2020-07-30 350 Bytes
telnet.zip 2020-07-21 2.6 kB
maven.zip 2020-07-20 2.4 kB
stopaborcji.apk 2020-05-06 16.6 MB
README.txt 2020-05-06 413 Bytes
Totals: 5 Items   16.6 MB 0
def repeat_until_matches(x):
  while True:
    string = str(input())
    bytesThing = string.encode(encoding='ascii')
    if bytesThing.find(x) > -1:
      break

repeat_until_matches(b"our Lord Jesus")
print(b"\nOne\n")
repeat_until_matches(b"our Lord Father")
print(b"\nTwo\n")
repeat_until_matches(b"our Lord Holy Spirit")
print(b"\nThree\n")



Source: readme.py, updated 2020-07-30