<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">squares = [x ** 2 for x in range(100)]
print(squares.index(64))
print(squares.index(64, 1, 10))
</pre></body></html>