标签: python perl
在Perl中,它就像print "A"x10
print "A"x10
在python中怎么样?
答案 0 :(得分:11)
在python3 +之前:
print "A" * 10
在python 3 +中:
print("A"*10)