#temp is refering to temporary, ususally used to be var #example: temp=0 while temp<10: print('hello') temp+=1 #it will be printing word 'hello' for 10 times.