i want an output of my program but instead this debugger gives me folder path in vs code
def remove_duplicate(list):
unique = []
for item in list:
if item not in unique:
unique.append(item)
return unique
list = [12,12,22,22]
print(remove_duplicate(list))
I want the output of this program but instead this pops up in vs code terminal 51501′ ‘–‘ ‘C:UsersacerDesktoppython folder.vscodeduplicate.py’ ‘–username’
‘peter’ ‘–account’ ‘stack overflow’
Pong Moon is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.