| Name | Modified | Size | Downloads / 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")