我正在寻找如何在 r 中执行 printf,即我想输入:
printf("hello %d\n", 56 )
并获得与键入相同的输出:
print(sprintf("hello %d\n", 56 )
我已阅读以下链接:
...所以我知道我可以使用cat("hello", 56)
,这可能就是我会做的,但只是想知道是否有一些快捷的写作方式print(sprintf(...))
?
对不起,如果这个问题是重复的(我不知道)。搜索“printf r”非常困难,因为它返回的结果是 php、c、...