As the other comments have already said it’s not Python. Not sure what you mean with text formatting, do you mean that it’s multiple strings that are concatenated using +? You don’t need the + in Python, you can do
some_function(
"part one of really long string"" part two of really long string"
)
Which is identical to
some_function("part one of really long string part two of really long string")
Is that python? If it’s, thank you, finally learned how to format text in a way that can be read on the script and in the execution.
As the other comments have already said it’s not Python. Not sure what you mean with text formatting, do you mean that it’s multiple strings that are concatenated using
+
? You don’t need the+
in Python, you can dosome_function( "part one of really long string" " part two of really long string" )
Which is identical to
some_function("part one of really long string part two of really long string")
It isn’t, there are curly braces. It’s TypeScript.
Python also have curly bracers, om dictionaries.
Yes, but not for indentation (which is obviously what I meant)
Looks like TypeScript to me
No, but you can do the same in python
I was thinking on trying it. Need to see how it works with f formatting.