0
Function
How to create a function that converts a string to the reverse order. For example, "hello world" on "world hello"
3 odpowiedzi
+ 1
Take in a string.
Split it into a list using the spaces.
Print the list in reverse.
+ 2
Please Show us your attempt