You can download this code by clicking the button below.
This code is now available for download.
Appends a string to a list and returns the updated list.
Technology Stack : List (list)
Code Type : Function
Code Difficulty :
def append_string_to_list(string, list):
list.append(string)
return list