This repository has been archived on 2025-12-15. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2024-09-20 14:17:13 +03:00

13 lines
240 B
Python

def numbers_Between(list1, x, y):
final = []
for i in range(len(list1)):
if i > x and i < y:
final.append(i)
final.sort()
return final
a = [4, 2, 5, 3, 6, 4, 7, 5]
b = numbers_Between(a, 3, 7)
print(b)