Я специально для вас про-python-ил, дорогие читатели 👇
def is_prime(n):
if n <= 1:
return False
for i in range(2, int(n**0.5) + 1):
if n % i == 0:
return False
retur…
Keep reading with a 7-day free trial
Subscribe to Научно-Технический·LAB-66 to keep reading this post and get 7 days of free access to the full post archives.