有没有办法打印:所有内容都在 1 行?
使用:
PRINT:e:LAST:"Current\:%8.2lf" \
PRINT:e:AVERAGE:"Avg\:%8.2lf" \
PRINT:e:MAX:"Max\:%8.2lf \n" \
我得到如下所示的输出:
Current: 32.56
Avg: 44.41
Max: 131.90 \n
Current: 28.15
Avg: 65.33
Max: 389.69 \n
Current: 11.98
Avg: 16.45
Max: 59.42 \n
....
我想让它看起来像这样:
Current: 32.56 Avg: 44.41 Max: 131.90 \n
Current: 28.15 Avg: 65.33 Max: 389.69 \n
最后,这将允许我格式化 txt 以导入到 excel 中。
这可能吗?