Poprawka złych plików

This commit is contained in:
Aleksander Misztal 2020-01-12 15:52:44 +01:00
parent 4481e139c5
commit 693e317962
2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
def farenheit(x):
def fahrenheit(x):
if x< -273.15:
return -459.67
else:

View File

@ -1,8 +1,8 @@
def is_almost_prime(x, limit):
if x <0:
if x < 0:
return False
else:
for y in range(2, limit+1):
if(x % y == 0):
return False
reutrn True
return True