Skip to content

Commit cfe8f9c

Browse files
authored
Create Sort_array.py
1 parent fa5d30d commit cfe8f9c

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Sort_array.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# List of Integers
2+
numbers = [10, 30, 40, 20]
3+
4+
# Sorting list of Integers
5+
numbers.sort()
6+
7+
print(numbers)

0 commit comments

Comments
 (0)