文字列の結合
文字列は単純な加算で結合できます。
a = 'This is A'
b = 'This is B'
c = a + ' ---> ' + b
print(a) # This is A
print(b) # This is B
print(c) # This is A ---> This is B
チャレンジ
入力として与えられた3つの文字列から、
all3
という名前の4番目の文字列を作成してください。この文字列には、3つの文字列がすべて <=>
で区切られて連結されます。all3
の値を出力してください。入力 | 出力 |
Hi, I am line 1
and I am line 2
and I am line 3 | Hi, I am line 1 <=> and I am line 2 <=> and I am line 3 |
Constraints
Time limit: 2 seconds
Memory limit: 512 MB
Output limit: 1 MB