This answer partially references GPT, GPT_Pro to better solve the problem.
format if the statement in the function is too long, use parentheses to wrap the line, so that the code is clearer and easier to read. For example:
Info FormatL_T(
%d,
% .3f),
2.1234);
breaks a long sentence into multiple lines in parentheses to make code easier to read. Also, the statements in the format function do not need to be immediately followed and can have Spaces between them to work. For example:
Info FormatL_T( %d, % .3f), 2.1234);
This is also OK.
Also, if you want to break the output into multiple lines, you can use \n in format to do this. For example:Info FormatL_T("%d\n% .3f", 2.1234);
Use \n to insert a new line into the output. However, if you want to output text that contains \n, you escape the character by prefacing it with a backslash(\). For example:
Info FormatL_T("%d\\n% .3f", 2.1234);
This will print \n in the string correctly. In general, when the format function is too long, brackets can be used to make the code easier to read; If you want to insert a new line into the output, you can do so using \n.
If the answer is helpful, please accept it.