This commit is contained in:
Igor
2026-07-18 20:05:03 +03:00
parent ee235ece10
commit 2e823d96af
6 changed files with 75 additions and 6 deletions
+1 -2
View File
@@ -2,7 +2,6 @@ def check_number(item):
return isinstance(item, (int, float))
def calculate_total_sum(nested_list):
new_summ = 0
for i in nested_list:
@@ -22,4 +21,4 @@ def process_data(data, limit):
print(check_number("u"))
print(process_data(data = (3,4,6,6,7,(1000,300)), limit = 100))
print(process_data(data=(3, 4, 6, 6, 7, (1000, 300)), limit=100))