Thanks to this video I managed to further optimize the time for my code for Problem 7 on Project Euler. However, as someone who's getting more familiar with Python, I want to understand line 105 in the image here. What is this line of code trying to do? Also, any suggestions on how to optimize this solution even more are welcome.
if all(x%i for i in primeList): ...