Kale was discoverd just 2 years ago ........
Answer:
<em>Lillipop</em>
Explanation:
If you have your hands correctly placed on the keyboard, the only hand needed to type the word, "lillipop", is the left hand!
<em>Hope I was of Assistance</em><u><em> #SpreadTheLove <3</em></u>
Answer:
The code for the function is given below in Python language
Explanation:
def append_string_to_file(filename, text):// function takes the filename // and text to append
f = open(filename, 'a')
f.write(text) //function part that writes the text
f.close() //closing the file using the explicit close function