In Perl it'开发者_StackOverflow中文版s as easy as print "A"x10
What about in python?
Before python3+:
print "A" * 10
In python 3+:
print("A"*10)
In Perl it'开发者_StackOverflow中文版s as easy as print "A"x10
What about in python?
Before python3+:
print "A" * 10
In python 3+:
print("A"*10)
精彩评论