gpt4 book ai didi

perl - 在 perl 中多次打印同一行

转载 作者:行者123 更新时间:2023-12-01 07:42:46 26 4
gpt4 key购买 nike

我想在一行中输出,现在很好,例如:

print "$a\t" x 99;
print "$b\n";

所以上面是一行的样子。但我也想打印这些行 $c次。有没有捷径可以做到这一点,而不是使用 for 循环,例如:
for ($i = 1; $i <= $c; $i++) {
print "$a\t" x 99;
print "$b\n";
}

有没有更简单的方法可以做到这一点,就像 "$a\t" x 99 ?

最佳答案

for (1 .. $how_many) { print "$foo\t" x 99, "$bar\n"; }

IMO 比 C 风格的 (;;) 循环更简单。

关于perl - 在 perl 中多次打印同一行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10400464/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com