Re: [Tutor] Visual studio Code -Python

2019-02-23 Thread Mark Lawrence
On 23/02/2019 12:23, Asad wrote: Please don't top post, it is so irritating when trying to read threads, TIA. Hi All , I am using : pdb.set_trace() can you all share some good tricks i using n ,s , l . The tedious part which I see is if it is a loop like for loop then I

Re: [Tutor] Visual studio Code -Python

2019-02-23 Thread Asad
Hi All , I am using : pdb.set_trace() can you all share some good tricks i using n ,s , l . The tedious part which I see is if it is a loop like for loop then I need to do next till the length for the data is completed for x in string : if re.search(x,line) len(string)

Re: [Tutor] Visual studio Code -Python

2019-02-23 Thread Mats Wichmann
On 2/23/19 5:23 AM, Asad wrote: Hi All ,          I am using : pdb.set_trace()           can you all share some good tricks i using n ,s , l . The tedious part which I see is  if it is a loop like for loop then I need to do next till the length for the data is completed for x in string :

Re: [Tutor] Visual studio Code -Python

2019-02-17 Thread Mats Wichmann
On 2/17/19 1:50 AM, Asad wrote: > Hi All , > > I am using Visual Studio Code for Python . However I was using > the debug option F5 i see it list the variables in my program neatly ,I set > breakpoints it stops there but I am unable to preview each line of the > execution of the code

[Tutor] Visual studio Code -Python

2019-02-17 Thread Asad
Hi All , I am using Visual Studio Code for Python . However I was using the debug option F5 i see it list the variables in my program neatly ,I set breakpoints it stops there but I am unable to preview each line of the execution of the code . Thanks, -- _