Every Python Function Explained | H - Z

แชร์
ฝัง
  • เผยแพร่เมื่อ 15 ก.ย. 2024

ความคิดเห็น • 27

  • @bacon4life
    @bacon4life ปีที่แล้ว +28

    3:14 dict order is guaranteed to be insertion order since python3.7

  • @sak.4001
    @sak.4001 ปีที่แล้ว +2

    Really a underrated channel no joke, as a computer science student and python begginer this is very educational, thanks alot mann..

  • @dookshi
    @dookshi ปีที่แล้ว +4

    A very nice observation sneaked in of how hashes of strings are not reproducible across multiple runs of the interpreter. You get a different one each time you re-run. This is for security reasons.

  • @AstraGamesStudios
    @AstraGamesStudios ปีที่แล้ว +3

    thank you so much! this is such a valuable source of information and you are my top youtuber to go to about python!

  • @mindypweightloss
    @mindypweightloss ปีที่แล้ว +2

    Went through both videos and there are a few missing that are listed in the Python docs... I love your explanations so maybe a 3rd video to cover these?
    ascii() , breakpoint() , bytearray(), compile(), ord(), __import__()

  • @KamyanYT
    @KamyanYT ปีที่แล้ว +4

    this video is so awesome I enjoyed it so much! thx Tim for the great content

  • @codedsprit
    @codedsprit ปีที่แล้ว +16

    Please continue the rust series!!

  • @markmilan57
    @markmilan57 ปีที่แล้ว

    Your tutorial method is great. Python is more closer to our natural language so make it simple.

  • @NCK974
    @NCK974 ปีที่แล้ว

    Nice video, I would add to the sorted function that you can use a lambda function in the key value. Example sorted_by_lowercase = sorted(original_list, key=lambda x: x.lower(),)

  • @antiwirus2
    @antiwirus2 ปีที่แล้ว +2

    15:59 you printed the same range r1 two times, should be r2 instead.

  • @ajaykryadav
    @ajaykryadav ปีที่แล้ว

    Too good Tim.. hatsoff

  • @zeningye791
    @zeningye791 ปีที่แล้ว +1

    15:57 line 8 should be print(list(r2))?

  • @carlosvazquez2710
    @carlosvazquez2710 ปีที่แล้ว +1

    in Round 10.5 should it be 11? it gives 10

  • @cheesybrik
    @cheesybrik ปีที่แล้ว

    Do every method next :)

  • @cyberslot
    @cyberslot 9 หลายเดือนก่อน

    How exactly this '[Finished in XXXms]' presentation of script execution time in the terminal is achieved?

  • @nathanbrown2640
    @nathanbrown2640 ปีที่แล้ว

    Btw, you glossed over it, but `round` in Python 3 uses the "round half even" rule by default.
    So your example of round(10.5) actualyl gave 10, not the value of 11 you said it would!
    Perhaps another video topic?

  • @bhaveshupadhey8257
    @bhaveshupadhey8257 ปีที่แล้ว +2

    Tim buck 2

  • @najibmansour3449
    @najibmansour3449 ปีที่แล้ว +1

    tim plz continue the rust tutorials

  • @credoboyofficial
    @credoboyofficial ปีที่แล้ว +1

    Just finished the part #1

  • @ipodtouch470
    @ipodtouch470 ปีที่แล้ว +1

    Tim get rid of the weird sound whenever you put something on the screen. It’s not subtle enough…

    • @TechWithTim
      @TechWithTim  ปีที่แล้ว +1

      Agreed, thanks for the feedback!

  • @philiptren2792
    @philiptren2792 ปีที่แล้ว

    Where is quit()?

    • @TechWithTim
      @TechWithTim  ปีที่แล้ว +1

      Ahhh I missed it, good catch

    • @philiptren2792
      @philiptren2792 ปีที่แล้ว +1

      @@TechWithTim wierdly enough, it doesn’t appear listed on the official Python docs.

    • @MeltedMask
      @MeltedMask ปีที่แล้ว +2

      @@philiptren2792 It's not there because exit() and quit() are from site-module which is allways called without import.
      You really should not use these functions in code, they only exist to help beginers to get out of python prompt.
      One should use instead:
      sys.exit()
      or just purely:
      raise SystemExit (in the end all of these just raises this exception)

  • @ChunkSaved
    @ChunkSaved ปีที่แล้ว

    Hi

  • @steveymcsteve0717
    @steveymcsteve0717 ปีที่แล้ว +1

    the constant whooshing in and out at the beginning of the video is a little much