Run
# Values x = ["Apple", "Banana", "Cherry"] # Take a variable with empty string to store result result = "" # For loop to append values to a string for value in x: result += str(value) print(result)
Output