sorry m8s i wrote a klausur today
This commit is contained in:
parent
3284a8e002
commit
35d05b5d18
28
6/tuer6.py
28
6/tuer6.py
@ -1,13 +1,19 @@
|
|||||||
inputFile = open("./input.txt", 'a+')
|
|
||||||
|
|
||||||
for c in inputFile:
|
with open("./input.txt", 'r') as input_file:
|
||||||
area = inputFile.read(4)
|
i = 0
|
||||||
check = ""
|
tmp_str = ""
|
||||||
for a in area:
|
|
||||||
if a not in check:
|
|
||||||
check += a
|
|
||||||
if(check==area):
|
|
||||||
break
|
|
||||||
|
|
||||||
print("Stelle des heiligen Pandabären: ", inputFile.tell())
|
for c in input_file.read():
|
||||||
print("Der Text an der Stelle: ", inputFile.seek(inputFile.tell()-1)) #hilf
|
tmp_str += c
|
||||||
|
i += 1
|
||||||
|
if len(tmp_str) > 3:
|
||||||
|
area = tmp_str
|
||||||
|
tmp_str = ""
|
||||||
|
check = ""
|
||||||
|
for a in area:
|
||||||
|
if a not in check:
|
||||||
|
check += a
|
||||||
|
if check==area:
|
||||||
|
break
|
||||||
|
|
||||||
|
print(tmp_str)
|
Loading…
x
Reference in New Issue
Block a user