A
Q. What will be the type of the variable sorted_numbers in the below code snippet?
Code:
numbers = (4, 7, 19, 2, 89, 45, 72, 22)
sorted_numbers = sorted(numbers)
print(sorted_numbers)
sorted_numbers = sorted(numbers)
print(sorted_numbers)
- Correct Answer - Option(A)
- Views: 25
- Filed under category Python
- Hashtags:
Discusssion
Login to discuss.