PythonではPHPと違い、配列にjoin()メソッドが無く、文字列のメソッドとして用意されている。
PHP Code
$str_array = array('Apple','Orange','Grape');
print $str_array.join(',');
Python Code
str_array = ['Apple','Orange','Grape']
print ','.join(str_array)
出力結果
Apple,Orange,Grape
PHP Code
$str_array = array('Apple','Orange','Grape');
print $str_array.join(',');
Python Code
str_array = ['Apple','Orange','Grape']
print ','.join(str_array)
出力結果
Apple,Orange,Grape