5 Useful F-String Tricks In Python

แชร์
ฝัง
  • เผยแพร่เมื่อ 10 ก.พ. 2024
  • Here are my top 5 most useful f-string formatting tricks that I use everyday in Python.
    ▶ Valentine's Day SALE on indently.io:
    www.indently.io
    ▶ Follow me on Instagram:
    / indentlyreels

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

  • @chyldstudios
    @chyldstudios 2 หลายเดือนก่อน +265

    the "=" trick in the f-string is fire.

    • @m-zurowski
      @m-zurowski 2 หลายเดือนก่อน +3

      It made my day - I'm gonna test run it in a loop with some random dictionary to see how many cool tricks it can do (like reading current settings) :)

    • @m-zurowski
      @m-zurowski 2 หลายเดือนก่อน +10

      ok, my idea didn't work as expected 😅

    • @dark_brownie
      @dark_brownie วันที่ผ่านมา

      Yeah, completely agree it is amazing

  • @sunwukong6268
    @sunwukong6268 2 หลายเดือนก่อน +89

    Ever since I learned f-strings...I love them.

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

      I wish I had known sooner!!

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

      And I love you....
      Sorry if I made things awkward... 😬
      Oof this awkward isn't it?

  • @andymitchell2146
    @andymitchell2146 2 หลายเดือนก่อน +36

    I've been using python for about 10 years, and f strings extensively, but never knew that last tip! Game changer!

    • @yash1152
      @yash1152 2 หลายเดือนก่อน +1

      well, thats cause its only a very recent one (afaik)

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

      @@yash1152it was introduced in 3.8, so a while back

  • @_Loki__Odinson_
    @_Loki__Odinson_ 2 หลายเดือนก่อน +194

    This is the first time I have seen someone specify datatype for variables in python, and I honestly loved it.
    Great tips btw.

    • @Indently
      @Indently  2 หลายเดือนก่อน +34

      That's the hype for type annotations that I love to see!

    • @Naej7
      @Naej7 2 หลายเดือนก่อน +11

      Not using type annotations should be banned by law

    • @_Loki__Odinson_
      @_Loki__Odinson_ 2 หลายเดือนก่อน +23

      @Naej7 I don't think so, many people choose Python for its simplicity, with the absence of type annotations being one of the key factors. Removing this feature might deter beginners from trying it out. However, as you become more proficient in programming, you may choose to utilize type annotations or when exploring other languages.

    • @Naej7
      @Naej7 2 หลายเดือนก่อน +6

      @@_Loki__Odinson_ Type Annotations help a lot, and if adding 5 characters (: int) is too hard at the beginning, then one should give up on programming lmao

    • @edwardcullen1739
      @edwardcullen1739 2 หลายเดือนก่อน +14

      ​@@Naej7 Except people don't understand how to use them, so you end up with unnecessarily hard to use APIs.
      If that's how you feel, why not just use C? 🤦‍♂️

  • @Zenivo
    @Zenivo 2 หลายเดือนก่อน +18

    About the fourth trick: the f in ".2f" tells it to format as float. You can also do for example ".2e"" which will format the number in scientific format.

  • @utarasama
    @utarasama 2 หลายเดือนก่อน +33

    The last one is super duper cool!

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

      RIP the maintainer

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

      ​@@dcx45 he should then watch this video

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

    Great video! Didn't know about the datetime and debug print ones. Definitely going to use them in the future, though.

  • @TheJaguar1983
    @TheJaguar1983 2 หลายเดือนก่อน +10

    Didn't know about the date/time and equals formatting. Looks like the first one forwards to strftime. Makes things so much more concise and readable.

  • @krzysiekkrzysiek9059
    @krzysiekkrzysiek9059 2 หลายเดือนก่อน +3

    This kind of tips are awesone. We need more 👍

  • @rolandsz8831
    @rolandsz8831 2 หลายเดือนก่อน +3

    Great video! I missed the bonus tip where you explain that format string calls __format__ on the object being formatted, so you can do your own formatting, like this:
    class MyData:
    def __init__(self, a: int, b: int, c: int):
    self.a = a
    self.b = b
    self.c = c
    def __format__(self, spec):
    if spec[0] not in self.__dict__:
    sep = spec[0]
    l = list(spec[1:])
    else:
    sep = ','
    l = list(spec)
    return sep.join(str(self.__dict__[key]) for key in l)
    my_var = MyData(a=1, b=2, c=3)
    assert f"{my_var:cba}" == "3,2,1"
    assert f"{my_var:-abc}" == "1-2-3"

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

    This is amazing!! thank you for this tutorial!!

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

    Wow, so many simple things I didn't about... Thank you

  • @SergioYT2052
    @SergioYT2052 2 หลายเดือนก่อน +1

    "Simple y bello como un anillo", como diría Neruda; pero además, muy funcional. ¡Muchas gracias!

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

    Thank you for the instructive tips!

  • @flashtrack101
    @flashtrack101 2 หลายเดือนก่อน +1

    Love your vids man! would love to see a tutorial on cython from you!

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

    Thank you, this went STRAIGHT into my current project. Commas in numbers was one of the next things I was going to look up.

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

    Nice and useful tricks for every day programming. I also prefer specifying types of variables, since it makes code better understandable.

  • @dipeshsamrawat7957
    @dipeshsamrawat7957 2 หลายเดือนก่อน +1

    Nice collection! 💯

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

    Absolutely fantastic and useful video!

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

    Finaly! All fstring variations in one film

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

    Love the video I knew some of those but the last one is epic I will be using that from now on .

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

    Love #5. Thank you.

  • @UndyingEDM
    @UndyingEDM 22 วันที่ผ่านมา +1

    For those who didn't know, the last one is called self-documenting expression and was released in Python 3.8

  • @quekki3666
    @quekki3666 2 หลายเดือนก่อน +13

    i love f strings
    also this is like the 3rd time i come across the = specifier but i keep forgetting its existence and type in the whole thing

    • @Indently
      @Indently  2 หลายเดือนก่อน +1

      It's a cool trick for sure!

  • @mattshu
    @mattshu 2 หลายเดือนก่อน +3

    F strings are soo chef kiss

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

    So cool.. thanks for sharing it. very informative

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

    Loved the last trick!!!

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

    Loved it ❤

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

    Great video....
    Thanks a lot😍👍

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

    This is super cool, I sadly can't think of any usecases in my current project

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

    That last one is sooo useful!

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

    Great work sir❤

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

    This is pure gold 🥇

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

    thanks for the showcases

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

    The last one was good!

  • @BohumirZamecnik
    @BohumirZamecnik 13 วันที่ผ่านมา

    Very nice. Another useful is formatting float as percent: f"{foo:.2%}".

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

    Last trick was super cool...

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

    i knew last one already, but seeing it again made me realise i should try to do this in java too, would have shortened a whole lot of cruft in one program i made.

  • @dark-ghost4132
    @dark-ghost4132 2 หลายเดือนก่อน

    Thank for nice tricks 😘

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

    thanks for your time
    please make videos about data structure

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

    Great video. Thanks

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

    Great video!

  • @daveys
    @daveys 2 หลายเดือนก่อน +1

    I like that print(f’{a + b = }’) one at the end. I can think of a few times when I’d use that.

    • @Indently
      @Indently  2 หลายเดือนก่อน +1

      Earlier I didn't know it worked on whole expressions, I think it's super cool as well!

  • @SaveCount-bh8tp
    @SaveCount-bh8tp 2 หลายเดือนก่อน

    Thanks very much

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

    the last fstring was dope

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

    Very nice
    Thanks

  • @cheesy_boya
    @cheesy_boya 2 หลายเดือนก่อน +5

    Yep, I'm saving this video

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

    Trick #2 is neat

  • @MechanicusOfficial
    @MechanicusOfficial 21 วันที่ผ่านมา

    I always use pyformat. Very easy to understand and pretty nice too. Var = 15
    print(“this is my var: {}”.format(var))

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

    Круто! Спасибо!

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

    the thumbnail to this video inspired an idea to use format strings in dictionaries
    so that a dynamic series of texts can undergo a linear list of mutations.
    Honestly, I actually need to refine my idea though.

  • @mad_vegan
    @mad_vegan 2 หลายเดือนก่อน +5

    To use scientific notation with integers, you can either do int(2e9) or 2*10**9.

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

    My preference is th .format(...) method fo a couple o reasons. I use Micropython a lot and f""" is not or has not been available, for format supports all the styles I like. i8n the string being formatted is not known at development time. Scope, the names using inside the string can be assigned at use time, i.e. in a function the value may be in a variable gmt_time but the string uses a standard name 'time'.

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

    I was so stoked when f'{ var = }' was added to Python!! Might be abusing it a bit lol

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

    These will be useful to me for sure. Here's a comment for the algorithm gods!

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

    Nice Tricks!

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

    ooh i like these videos
    logic magic !

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

    nice examples

  • @casperghst42
    @casperghst42 18 วันที่ผ่านมา

    Intersting, a large part of the world is using . (period) as a 1000 separator and , (comma) as a decimal point.

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

    That last one goes wild

  • @GW-nh9qc
    @GW-nh9qc 28 วันที่ผ่านมา

    Klasse 😃👍

  • @artistpw
    @artistpw 27 วันที่ผ่านมา

    Very nice.

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

    The last one blew my mind

  • @ErLakhan
    @ErLakhan 19 วันที่ผ่านมา

    Superb

  • @Lord2225
    @Lord2225 2 หลายเดือนก่อน +1

    Fact: You can define custom logic for f'string on your classes and get string after : as argument to __format__

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

    You make the code easier to read, so you better use the functions of the str class! 🐳

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

    Thank you

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

    I wish more languages would copy this feature, and that Python would allow you to use variables inside the strings to select formatting options. For my own language, I made all strings f-strings and just have a shorthand where "$var" will stringify the value of `var`, and "${ expr }" will stringify the value of any valid expression. I made it so that format specifiers could use a variable instead of a numeric constant in the string. That way you could pad the output to the terminal dependent on the actual terminal attributes without using a loop. I'm hoping that this methodology negates the need for *printf() functions in my language, because separating the variable from any formatting options on it is error prone, and most of the time people just want to print as is.

  • @murphygreen8484
    @murphygreen8484 2 หลายเดือนก่อน +1

    Don't forget in newer python you can add multiple lines of text by stringing together f strings

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

    Does datetime have a formating depending on nation?
    Like we would have already through a login or a whois access to a users current or defined whereabouts or nationality and we would want to have their specific way of reading time provided for them.

  • @NickCombs
    @NickCombs 2 หลายเดือนก่อน +1

    This definitely seems more convenient than it is in js.

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

    Awesome! I love the '=' and >

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

    Apart from learning about the f condition, I also learned you can declare the data type in python which i have not been doing lol

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

    3:24 this tip will literally improve my code quality

  • @IuseArchbtw-di6cd
    @IuseArchbtw-di6cd 2 หลายเดือนก่อน +1

    Hey bro, can you make an easy to digest about python Decorator
    I've been stuck in this topic for about 2weeks, all the video that i've watched are still hard to digest for my brain
    I would be glad since you've shown me this cool F-string trick that i never knew existed
    Thank's in advance

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

      A decorator is a syntactic sugar for setting a variable of the same name to the result of applying a fucntion to a function.
      @decorator1
      def func():
      ...
      Is the same as:
      def func():
      ...
      func = decorator1(func)
      The key here is that decorator1 _must_ return something that is (1) callable, and (2) has the same arguments as the function it wraps around.

    • @Indently
      @Indently  2 หลายเดือนก่อน +1

      I have videos about it on my channel, just search "decorators indently"

  • @xKiiyoshiix
    @xKiiyoshiix 2 หลายเดือนก่อน +1

    Hello @Indently,
    Can you please explain me, why you use ":" after a variable for ex. n:?
    Regards.

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

      It allows him to specify what type of variable it is. "n: int = " tells anyone reading that it's an integer. I'm glad you asked that though, because I'm an amateur and I'm curious, @Indently is that common practice?

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

    Gold!

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

    May I ask which IDE and development env are you using? Looks so great

    • @meowsqueak
      @meowsqueak 2 หลายเดือนก่อน +1

      It’s PyCharm

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

      @@meowsqueak thanks!

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

    Hi! Thanks! Great video! Worth mentioning that the last one does not work on older versions of python3 (I tried it on 3.7.17 and it gives a syntax error).

    • @UndyingEDM
      @UndyingEDM 22 วันที่ผ่านมา +1

      Probably added in a later version. I'd love to know which. Edit: it's called self-documenting expression released in Python 3.8

  • @Smart_Coder7
    @Smart_Coder7 2 หลายเดือนก่อน +22

    This Video was sponsored by me. 💀

  • @-george-1153
    @-george-1153 หลายเดือนก่อน

    You're cool! 👍

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

    9:30 that approach though had the single quotation marks removed, which from a formating pov is cleaner, isn't there a version of the first shorter approach without the quotation marks then printed? (edit: while still being flexible in terms of variable names as mentioned)

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

    big fan bro
    from india

    • @Indently
      @Indently  2 หลายเดือนก่อน +1

      Thanks!

  • @user-hd3pz2ow1b
    @user-hd3pz2ow1b 2 หลายเดือนก่อน

    rounding in python .. cool

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

    thanks

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

    Which editor is that? Looks fresh

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

    What can you do with print(f'{var: >+{x}}') ?
    The additional + get's printed in front of var but a - doesn't, you can put a # instead of the + and it's not throwing an error, yet doesn't seem to do anything. Letters and other symbols give an error.

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

    i dont really know anything about programming or python but im curious. when you do "var:" is the colon part of the variable name? or a requirement for specifying a variable name? if its part of its name, is it to differentiate it from something else?

    • @AnonHooman
      @AnonHooman 2 หลายเดือนก่อน +1

      The colon after a variable name is for typing the variable, for example:
      my_var: str = ‘Hello’
      We’re saying that my_var is of type str (string) and has the value ‘Hello’. However, the typing is not necessary and
      my_var = ‘Hello’
      would work just as well. Though, most people would recommend to use type hints

    • @PanduPoluan
      @PanduPoluan 2 หลายเดือนก่อน +1

      @@AnonHooman Well if assigning simple, easy-to-infer data for a variable, I usually do away with type-hinting.
      Type-hinting is a godsend to mark parameters to a function, preventing hard to trace ValueError or TypeError exceptions later on.
      I usually don't type hints my variables except when I'm doing unpacking.

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

    Which code editor do you use? It appears to be pycharm. But the ui is different from what I have in windows laptop.

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

      It’s the new UI. Perhaps you’re still using the legacy UI?

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

    For debugging, I recommend the "Icecream" library.

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

    That last tip is the biggest argument against a debugger; if they wanted you to use it, why did they provide that debug syntax? 🤓

  • @Alchemist10241
    @Alchemist10241 10 วันที่ผ่านมา

    1e9 was the most useful to me

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

    What does the f prefix do at the beginning of the argument? Are we inserting a blank float?

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

      Are you talking about the f prefix before the quotes? If yes, then that's "f strings"

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

      @@mudyeet_ yeah, like what does an 'f string' even mean? Feel like they missed out on calling it a G string

  • @kamurashev
    @kamurashev 2 หลายเดือนก่อน +1

    Yep, f string is a great feature. At least something Python gives us 😅

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

    in the first example, do you know what decimal points wouldn't work?

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

    Question. Why do you declare the variable with the type? I'm a beginner and I never saw that, it's a good practice?

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

      Type hints or specifying types are good practice, rather than commenting what should be obvious code. It also enables easier linting and test suites. Google "why type hint" ❤

    • @PanduPoluan
      @PanduPoluan 2 หลายเดือนก่อน +1

      It's called type-hinting.
      In his example, it doesn't serve much.
      But in a big program, it will cause the IDE to warn you that you plan on using a variable only to store certain type(s) but you accidentally typed code that assign a different type to it.
      For instance, say you have
      result: string = ""
      Then much later on you assign:
      result = sorted(some_list)
      print(result)
      The IDE will warn you that, "hey, you originally said you're only going to store a string here, but let me warn you, you're about to store a list here."
      Other than that, Python won't actually error out there.

    • @PanduPoluan
      @PanduPoluan 2 หลายเดือนก่อน +1

      Another example purpose:
      You assign the result of a function that _declares_ it will return a list of floats
      def some_func() -> list[float]:
      ...
      rslt_list = some_func()
      Then you do this:
      print(", ".join(rslt_list))
      The IDE will warn you that the str.join() function requires a list of str, but you're calling it with a list of floats.
      In this case, if you don't heed the warning, your program will raise an error at that point (because of .join()'s requirement).

    • @PanduPoluan
      @PanduPoluan 2 หลายเดือนก่อน +1

      Again, in all case, you're only given a hint that _probably_ something is not quite right. It still won't change Python into a statically-typed language. Just another tool to help a Python Programmer prevent errors due to Type Mismatch.

    • @eduardolima5495
      @eduardolima5495 2 หลายเดือนก่อน +1

      @@PanduPoluan bro! Thanks for the answer!! Super detailed!!

  • @kaifscarbrow
    @kaifscarbrow 2 หลายเดือนก่อน +1

    7:01 Bummed that you didn't mention that changing f to e gives you the number's scientific representation

    • @callejohansson5732
      @callejohansson5732 2 หลายเดือนก่อน +1

      This gave you a chance to look clever. Be grateful.

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

    👍💯

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

    In the first example, int variable n assigned a number in scientific notation returns a float number when printed, but no error occurred. In what sense must n be declared a float therefore?

    • @meowsqueak
      @meowsqueak 2 หลายเดือนก่อน +1

      It’s not a type declaration, it’s a type hint given as an annotation. Annotations in Python have no effect at run time so no error occurs. They are just hints to a static type checker.

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

      Type annotations are just comments, and comments always lie.

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

    You need to be careful with the equal sign formatting. It is relatively new. I sometimes have to use Python 3.7 because that’s what is preinstalled and there it does not work.

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

      Python 3.7 has reached the end of its life in terms of support, nothing to be careful about, it's just time to upgrade :)

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

      @@Indently we are using Amazon Linux 2 still where it is the default. As it is only for management stuff we use the python that is available and don't install a later one. We will migrate to AL 2023 (or newer) eventually.