# Split on space.
my_arr = sent.split(" ")
print(my_arr)
# Create a new array using the sorted method
new_arr = sorted(my_arr)
print(new_arr)
# This time, my_arr won't change in place, rather, it'll be sorted
# and a new instance will be assigned to new_arr
print(my_arr)
If the answers is incorrect or not given, you can answer the above question in the comment box. If the answers is incorrect or not given, you can answer the above question in the comment box.