How To Create Decorator Functions In Python

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

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

  • @PidginPlays-yb2vp
    @PidginPlays-yb2vp 6 หลายเดือนก่อน +5

    Good video. You have one mistake in your code. At 3:20 you should have used "return orig_func(x,y)".

  • @chiasmsandmorealpersohn5258
    @chiasmsandmorealpersohn5258 6 หลายเดือนก่อน

    As always, well stated and well paced. Thank you!

    • @lllllMlllll
      @lllllMlllll 2 หลายเดือนก่อน

      That is because you are a noob who did not see the obvious mistake. You must be the tailor of his shirt.

  • @maloukemallouke9735
    @maloukemallouke9735 6 หลายเดือนก่อน +3

    thank you for share
    but where is the result of 1+7?

    • @rosariocatania9664
      @rosariocatania9664 4 หลายเดือนก่อน +4

      He didn't print the result value in the principal function, so you don't see it

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

      it's 8 bro

  • @em_the_bee
    @em_the_bee 6 หลายเดือนก่อน

    3:18 lul, it's 2024, and Python STILL can't into string interpolation that doesn't make you throw up?

    • @lilsos6892
      @lilsos6892 6 หลายเดือนก่อน +1

      idk, print(f"") works flawlessly, idk why he went for that useless shit

    • @em_the_bee
      @em_the_bee 6 หลายเดือนก่อน

      @@lilsos6892 meanwhile Ruby 20 years ago and to this day:
      puts "String with #{any_expression}" # notice the lack of random magic numbers and letters

    • @MrNolimitech
      @MrNolimitech 6 หลายเดือนก่อน

      There is a lot of ways.
      print("{0}, {1}".format(x, y))
      print("{x}, {y}".format(x=x, y=y))
      print("%s, %s" % (x, y))
      print(f"{x}, {y}") => best and most readable!
      print(x + " " + y) => (might need to put it in str(x), str(y))

    • @TaylorsSoftware
      @TaylorsSoftware  6 หลายเดือนก่อน

      There are many different ways that Python allows you to concatenate strings and printing. The beauty of Python is that it has variety.

  • @lllllMlllll
    @lllllMlllll 2 หลายเดือนก่อน

    You made a mistake dude. It must be the shirt.

    • @TaylorsSoftware
      @TaylorsSoftware  2 หลายเดือนก่อน

      My shirt is the decorator function haha!

  • @michgingras
    @michgingras 4 หลายเดือนก่อน +2

    this are little tweaks of the language who seem to serve no purpose, they only make things difficult and complicated, lets create a system that does the same thing than the other system, but differently and harder to comprehand ! yea ! the Perk class !