Hello Friends.
In Our Previous Blog, We have Learned the Basics of Python Programming Language & Simple Program in Python Programming Language.
In Our Previous Blog, We have Learned the Basics of Python Programming Language & Simple Program in Python Programming Language.
Print List Item in Assending Order Without Using Sort Function Program in Python Programming Language.
Assending Order- Program
#List in Assending Order
list=[9,5,1,7,5,3,6,2,8,0]
for i in range(0,len(list)):
for j in range(i+1,len(list)):
if list[i]>list[j]:
temp=list[i]
list[i]=list[j]
list[j]=temp
print(type(list))
print("Assending Order = ",list)
Output
<class 'list'>
Assending Order = [0, 1, 2, 3, 5, 5, 6, 7, 8, 9]
Print List Item in Dessending Order Without Using Sort Function Program in Python Programming Language.
Dessending Order- Program
Comments
Post a Comment