[Solved] I cannot pass of the first print


print ('conexion ON')
while(response<200):

response is a string (“something” in your debugging output). You are comparing it
to an integer. In some implementations of Python, integers always compare “less than” strings, and it looks like that’s why the loop is getting skipped in your case.

3

solved I cannot pass of the first print