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: if x< -273.15:
return -459.67 return -459.67
else: else:

View File

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