+ 6
I was solving security code coach program but im not able to solve for loop problem,how can i fix it.
s=input() in range(100) thief=0 money=0 guard=0 leng=len(s) for i in range(0,leng,1) if s[i]=='T' thief=i if s[i]=='G' guard=i if s[i]=='
#x27; money=i if money<guard and guard<thief: print("quiet") elif thief<guard and guard<money: print("quit") else: print("ALARM")2 ответов
+ 2
Rithea Sreng but it shows only syntax error near for loop
+ 2
Ok where do i have to change indentation