a = [3, 5, 34, 10]
b = [45, 32, 12, 5, 44]
c = a + b
print(min(c))
print(max(c))
c.pop(0)
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
a = [3, 5, 34, 10]
b = [45, 32, 12, 5, 44]
c = a + b
print(min(c))
print(max(c))
c.pop(0)