test_split.py 71 B

123
  1. str = "abc@|@456@|@7890"
  2. split_str = str.split("@|@")
  3. print(split_str)