Language: Python 3 (Please structure answer as basic as
possible)
Write a function that involves two arguments, named
changeTheCase(myFile, case), that takes, as arguments, the name of
a file, myFile, and the case, which will either be “upper” or
“lower”. If case is equal to “upper” the function will open the
file, convert all characters on each line to upper case, write each
line to a new file, named “upperCase.txt”, and return the string
“Converted file to upper case.” If...