PyCharm Debug Tutorial | How to Debug Code in PyCharm!

Поделиться
HTML-код
  • Опубликовано: 2 янв 2025

Комментарии • 75

  • @mazenalsakkaf
    @mazenalsakkaf 2 месяца назад +3

    This is one of the best tutorials I've ever taken, and the explanations on debugging are exceptional. I much appreciate it.

  • @NaderTaghinia
    @NaderTaghinia Год назад +5

    Nice and clean explanation of the difference between 'step over' and 'step into' in Pycharm debugger. Thank you 👌

  • @antoniobanderas5316
    @antoniobanderas5316 День назад

    Thanks a bunch! Have been putting off this for a long time, but this quickly put the point across.

  • @jtdellasega
    @jtdellasega Год назад +2

    Great resource. Deserves a million views.

  • @054vijayakumark4
    @054vijayakumark4 2 года назад +2

    i never had an idea that I can use pycharms debug console this much its so useful thankyou

  • @JJJJ-gl2uf
    @JJJJ-gl2uf 2 года назад +2

    Just learning about the Pycharm debugger, and your video was quite helpful. Many thanks.

  • @akashkece
    @akashkece Год назад

    Amazing, thank you for clarifying over Step over and Step into my code. Using pycharm from 2 years, still did not know that.

  • @jashielp.estrada7163
    @jashielp.estrada7163 3 года назад +2

    Wow!! Thanks a lot. I was looking for this treasure!

  • @GABRIEL1030
    @GABRIEL1030 Год назад

    better than University...fast & free. thanks!

  • @miladsamavat5176
    @miladsamavat5176 3 года назад +4

    That was awesome. Thank you.

  • @Korea-Lens
    @Korea-Lens 2 года назад +1

    was a fantastic intro to pycharm debugger. tyvm for great concise content

    • @MaxRohowsky
      @MaxRohowsky  2 года назад +1

      hey eric! glad it helped :D

  • @Arunchangalva
    @Arunchangalva Год назад

    Explanation is very clear and onpoint ... Thank you Max

  • @anuragmishravashishth2722
    @anuragmishravashishth2722 4 месяца назад

    Best video on pycharm debugger ❤

  • @Afzal883
    @Afzal883 2 года назад +1

    Hey Max you won hearts hatts off to you, your way of teaching is really very good.... Thanks buddy....

  • @Rubbernecker
    @Rubbernecker 3 года назад +2

    Excellent video!!!

  • @koushikreddy7068
    @koushikreddy7068 2 года назад +1

    Helped alot for basics

  • @AmalNasharti
    @AmalNasharti Год назад +1

    Thank you so much. Now I've understood!

  • @jirafey_
    @jirafey_ 2 года назад +1

    tysm I wanted an easy debugger tutorial cheers!

    • @MaxRohowsky
      @MaxRohowsky  2 года назад

      hey grzegorz, glad it helped :)

  • @nihao852
    @nihao852 Год назад

    very clear explanation and straightforward examples, thank you!

  • @venkatkiran6616
    @venkatkiran6616 Год назад

    it was Fantastic. Thanks man.

  • @MxAvA
    @MxAvA 11 месяцев назад

    Nice and clear. Thank you. I wonder how you seemed to magnify the run window near the end. I'm just starting out with PyCharm. The number of buttons, windows, options is overwhelming. But at least I know the basics of the debugger now. Thank you!

  • @ankitchanpuria7176
    @ankitchanpuria7176 9 месяцев назад

    Great Explanation thanks

  • @sherrieffbey235
    @sherrieffbey235 Год назад

    Thanks man this helps a lot!

  • @barthandelus8340
    @barthandelus8340 Год назад

    That was extremely useful, thank you!

  • @noobiemanxyz8982
    @noobiemanxyz8982 3 года назад +1

    Best 🔥🔥🔥

  • @michaelvyaho_location
    @michaelvyaho_location Год назад

    thanks for this great video!! very helpfull

  • @jonesmukuta1910
    @jonesmukuta1910 2 года назад

    Thanks for this. Really helpful.

  • @hari7234
    @hari7234 Год назад

    Thank you very much this is very useful video to me ❤

  • @mohamdimad6133
    @mohamdimad6133 3 года назад +1

    good work, thank you

  • @philipfiguerres6132
    @philipfiguerres6132 2 года назад

    Much thanks.

  • @djitymik
    @djitymik 2 года назад +1

    hi max great lesson, pleaste could you explain me the meaning of the word "list" in the function definition "def addition(array: list)".. dont understand what it's mean.. thanks a lot!

    • @MaxRohowsky
      @MaxRohowsky  2 года назад

      Hi Michel, it simply means that the addition function takes an argument called array and the array is of the type list.

  • @MuhammadUsman-w3z7w
    @MuhammadUsman-w3z7w 8 месяцев назад

    Thanks! So the difference between pycharm debugger and thonny debugger is that in thonny you do not have to make any effort and thonny will explain everything to you but in pycharm you have to do a little extra work.

    • @MaxRohowsky
      @MaxRohowsky  8 месяцев назад

      hey i've heard of thonny for the first time. I recommend pycharm. It's an awesome editor.

  • @punitsharma879
    @punitsharma879 2 года назад

    Can we step into the print function itself to see the source code for it ? I tried doing it but it doesnt work

  • @prasadbatikeru8250
    @prasadbatikeru8250 2 года назад

    I have issues to start the debug console in Pycharm. I am getting "Connection to Python debugger failed Socket operation on nonsocket: configureBlocking." error. is there any configuration need to be done before start debugging?

  • @larryoguora7145
    @larryoguora7145 Год назад

    loved it

  • @danyhermawan7654
    @danyhermawan7654 2 года назад

    Hi Max, thank you for your sharing! you are a great mentor. Actually I still confused about the breakpoint. At the first example, if you put the breakpoint on print statement 2, it only printed statement 1. But when you did it to the other section, it still printed the code on the breakpoint (the division and multiplication function).

    • @MaxRohowsky
      @MaxRohowsky  2 года назад

      Hey Dany, I have to admit it's a bit messy and counter intuitive. Sometimes I still have trouble with breakpoints myself :D

  • @StartNight-df3sv
    @StartNight-df3sv Год назад

    Why pycharm doesn't warn or stop for any errors on the code ?
    Eg. MyFunction()
    There is no such function on the entire file. Pycharm sleeps and no warning.
    How to scan the entire project for such errors in one click ?

  • @junecsia
    @junecsia Год назад

    I keep getting an error on the step over demonstration

  • @MuhammadUsman-w3z7w
    @MuhammadUsman-w3z7w 8 месяцев назад

    Pycharm's debugger is quite powerful compared with the one VS Code has!

    • @MaxRohowsky
      @MaxRohowsky  8 месяцев назад

      yes, the debugger is nice. pycharm is the best editor by far.

  • @raym6415
    @raym6415 2 года назад +1

    Thanks for sharing but from your examples I suspect you are not a programmer yet. Why?
    Functions do not print, they return
    For loops are passed the length of the list not a hard coded number such as 3
    Function calls should occur in if __name__ equal __main__

  • @anandmaurya6133
    @anandmaurya6133 Год назад

    Very helpful tutorial, Thanks .
    For Shorter version Python Debugging in Pycharm. ruclips.net/video/vQp_s7ugBTE/видео.html

  • @muokinzangi3067
    @muokinzangi3067 2 года назад +1

    Just learning about the Pycharm debugger, and your video was quite helpful. Many thanks.

  • @noobiemanxyz8982
    @noobiemanxyz8982 3 года назад +2

    Best 🔥🔥🔥

  • @noobiemanxyz8982
    @noobiemanxyz8982 3 года назад +2

    Best 🔥🔥🔥