I'm a beginner in python.
I code to receive a string and find it's most occurring character
userInput=input()
my_input=list(userInput)
count= {}
for num in my_input:
count[num] = count.get(num,0)+1
m=max(count)
print(m)
when i executed i receive this error
File "third.py", line 8
m=max(count)
^
IndentationError: unindent does not match any outer indentation level