Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
たとえば、文字列を繰り返すにはどうすればよいですか。
書く代わりに、print ('---------------------------')どうやってそれを次のようにしprint ('-') * 60ますか?
print ('---------------------------')
print ('-') * 60
あなたはとても近かった:
>>> print('-' * 60) ------------------------------------------------------------
関数の戻り値ではなくstr、値を乗算する必要があります。print()
str
print()
あなたはとても近かった - それは
print "-" * 60
Python 2 では、Python 3 では、
print ("-" * 60)