siddharth
Results
2
comments of
siddharth
> Basic code for the problem: ```python def divby7(n): i = 1 listn = [] while i < n: if i%7 == 0: listn.append(i) i += 1 return listn ```...
@AdityaSoni19031997 :+1: