#文字列じゃないとエラーが出る

array = ["123","190","200"] res = "_".join(array)  print(res)

結果

123_190_200