This is an assignment where we have to take a sentence or phrase as input and output the phrase without whitespace.
Example: if input is 'hello there' output would be 'hellothere'
the code I have so far only outputs the string in separate letters: Like 'h', 'e', 'l', etc etc
def output_without_whitespace(input_str):
   lst = []
   for char in input_str:
       if char != ' ':
           lst.append(char)
   return lst
if __name__ == '__main__':
   phrase = str(input('Enter a sentence or phrase:\n'))
   print(output_without_whitespace(phrase))
 
     
     
    