During debugging If we place a breakpoint on news = ReadPythonNews(GetItemCount(GetItemCount()))
, how to move into ReadPythonNews() and eventually to the last line of ReadPythonNews() return news[:count]
Trying to do the part of the tutorial displayed below
Try stepping or running to a breakpoint on the last line of this function, which reads return news[:count]. In this context, right-clicking on news under locals in Stack Data allows viewing the value in textual form or as an array.