diff --git a/intro/Task104.py b/intro/Task104.py index f437100..6c937f4 100644 --- a/intro/Task104.py +++ b/intro/Task104.py @@ -1,4 +1,4 @@ -def farenheit(x): +def fahrenheit(x): if x< -273.15: return -459.67 else: diff --git a/intro/Task105.py b/intro/Task105.py index 7701a56..64c92ee 100644 --- a/intro/Task105.py +++ b/intro/Task105.py @@ -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 \ No newline at end of file + return True \ No newline at end of file