Python Challenge 1 | Coding Challenges

preview_player
Показать описание
Python Challenge 1 | Coding Challenges #coding #challenge #python

Try to solve it within 15 mins and let us see your performance in this coding challenge 1

-------------------------

--------------------------
Рекомендации по теме
Комментарии
Автор

One single line:
print(", ".join([str(i) for i in range(2000, 3201) if i % 7 == 0 and i % 5 != 0]))
Late but safe (maybe ...)

javiercantoy
Автор

This is really great....keep making it on daily basis ❤️

MrMukulpandey
Автор

Easy one :
3 min 34 sec (time taken)
2002...
.3019

Code :
for i in range(2000, 3201):
if( i %7==0 and i%5!=0):
print(i, end=", ")

MrMukulpandey
join shbcf.ru