Advertisement
sigmachto

Untitled

Jul 4th, 2023
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.12 KB | None | 0 0
  1.  
  2. #1)
  3. def summ_in_list(n):
  4.     j = sum(int(x) for x in n)
  5.     return j
  6. a = [int(x) for x in input().split()]
  7. print(summ_in_list(a))
  8. #Ответ:77
  9.  
  10. #2)
  11. def find_diop(n):
  12.     if int(input()) <=n <= int(input()):
  13.         return True
  14.     else:
  15.         return False
  16. print(find_diop(int(input())))
  17. #Ответ: True
  18.  
  19. #3)
  20. def find_div(n):
  21.     a = []
  22.     for i in range(1,n):
  23.         if n % i == 0:
  24.             a.append(i)
  25.             print(a)
  26.     if sum(a) == n:
  27.         return True
  28.     else:
  29.         return False
  30. print(find_div(int(input())))
  31. #Ответ:True
  32.  
  33. #4)
  34. def is_palindrom(n):
  35.     s = str(n)
  36.     if s == s[::-1]:
  37.         return True
  38.     else:
  39.         return False
  40. print(is_palindrom(int(input())))
  41. #Ответ: False
  42.  
  43. #5)
  44. def is_prime(n):
  45.     for i in range(2,int(n ** 0.5)+1):
  46.         if n % i == 0:
  47.             return False
  48.     return True
  49.  
  50. print(is_prime(int(input())))
  51. #Ответ: False
  52.  
  53. #6)
  54. def f(n):
  55.     if n == 1:
  56.         return 0
  57.     if n == 2:
  58.         return 1
  59.     if n == 3:
  60.         return 1
  61.     if n > 3:
  62.         return f(n-1) + f(n-2)
  63. print(f(10))
  64. #Ответ: 34
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement