square

Find and print the square numbers in a given range python

Find and print the square numbers in a given range python Question: Find and print the square numbers in a given range python Here’s my approach a, b = int(input()), int(input()) from math import sqrt for i in range(a, b+1): if i%10 != 1 and i%10 != 4 and i%10 !=9 and i%10 !=6 and …

Total answers: 2