Answers for "how to sort a string in def python 3"

0

sort a string in python

#Sorted function returns the string as a list which we are converting to a string again using join
new_str=''.join(sorted(old_str))
Posted by: Guest on July-21-2021

Code answers related to "how to sort a string in def python 3"

Python Answers by Framework

Browse Popular Code Answers by Language