Suppose if i have list input_list=["Name","Age","Address","nAme","Father","NAME","AGE"]
- I have - "name"multiple times but while checking I don't want it to be case sensitive. if there is duplicate add 1 , 2 etc.
- I am trying to remove Duplicates i want to add - NaMe,- Name1,- NAME2but order should be same- can you please help me achieve this output. 
I want output final_list=["Name","Age","Address","nAme1","Father","NAME2","AGE1"]
 
    