We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30e953a commit e9dd5feCopy full SHA for e9dd5fe
practice8.py
@@ -0,0 +1,5 @@
1
+#EXERCISE 8 - Sorting a string
2
+
3
+str= input("Enter any string to be sorted :")
4
+sorted_str=sorted(str)
5
+print(sorted_str)
0 commit comments