You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class divisible :
def by_seven(self,n):
for number in range(0,n+1):
if number % 7 == 0 :
print(number)
divisible=divisible()
generator = divisible.by_seven(int(input("please enter the number : ")))