Skip to content

Commit a051c45

Browse files
authored
Update tpy.py
1 parent 615e683 commit a051c45

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

true/tpy.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
p=0;ts=[];s=[]
66
while 1:
77
if code[p] == '"' :
8-
p+=1;s.append(code[p:code.index('"',p)])
9-
p=code.index('"',p)
8+
p+=1;s.append(code[p : code.index('"', p)])
9+
p=code.index('"', p)
1010
elif code[p] == "." : print(s.pop())
1111
elif code[p] == "," : s.append(input())
1212
if code[p] == "\n" : break

0 commit comments

Comments
 (0)