Is there any difference between parameters starting with underscore and normal parameters in python ?
eg:
def fun1(_data, _val):
....
....
def fun2(data, val):
....
....
Why I asked this question is because, in pycharm I could see the parameter data as blurred (It wasn't using anywhere) and the parameter _data as non-blurred (which was also not using anywhere in the function)