I'm new to VS Code. I run simple function in Python and want to see output. I use "Debug" -> "Start Debugging".
def double_char_function(string): string = 'abc' return_string = '' for char in string: return_string += char*2 return return_string I want to see the output:
aabbcc
I saw it when I run it. But don't know how to see it again. Please, help me to use VS Code.
Screenshots:
Kind regards, Anna
double_char_functionwith a string for it to process, and thenprintout what it returns.