Permanently Deleted (lemmy.world)
submitted 8 months ago* (last edited 8 months ago) by to c/memes@lemmy.world
 

Permanently Deleted

you are viewing a single comment's thread
view the rest of the comments
[–] 2 points 8 months ago (1 child)

How would you write it, I'm new to python but it reads like they are just trying to make the code not go off the side of the screen?

  • source
  • parent
  • hideshow 1 child comment
  • You do multiline strings with 3 quotes, e.g.:

    some_var = “string”
    s = f"""
    This is a very very very very very very very very very
    very very very very very very long {some_var}.
    """
    

    If you don’t want line breaks, you can also do

    some_var = “string”
    s = (
      f”This is a very very very very very very very very very”
      # note the leading space here
      f” very very very very very very long {some_var}.”
    )
    

    But doing it the way shown will render the string something like:

    This is a very very very very very very very very very      very very very very very very long {some_var}.
    

    That big block of white space in the middle is not desired.

  • source
  • parent