1)199
Объяснение:.
#1
lst = [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89]
[print(item, end = ' ') for item in lst if item < 13]
#2
lst = [1, 2, 3, 4, 5]
print(lst[0], lst[len(lst)-1])
1)199
Объяснение:.
#1
lst = [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89]
[print(item, end = ' ') for item in lst if item < 13]
#2
lst = [1, 2, 3, 4, 5]
print(lst[0], lst[len(lst)-1])