Answer the following short coding question. Do NOT write fun…

Answer the following short coding question. Do NOT write functions and do NOT hardcode.  Given a text file called batman.txt, output the number of words in the file divided by the number of lines. Store the answer in a variable called count.    Example:   batman.txt:  Not the hero we deserved,  but the hero we needed.    >> count =         5    Notes:   batman.txt can be longer than 2 lines so do NOT hardcode.  Characters separated by spaces should be counted as words. You may ignore other punctuations besides spaces.    Answer this question by typing your code in the space provided below.