将字符串 "剪纸|皮影|年画" 按"|"分割成列表,正确代码是?
"剪纸|皮影|年画".split("|")
"剪纸|皮影|年画".split()
"剪纸|皮影|年画".replace("|", ",")
"剪纸|皮影|年画".list()