#!/usr/bin/python3
# -*- coding: utf-8 -*-
test = "今天吃了吗"
test = "_".join(test)
print(test)
今_天_吃_了_吗

test = "今天吃了吗"
test = " ".join(test)
print(test)
今 天 吃 了 吗

 

相关文章:

  • 2021-09-20
  • 2021-12-31
  • 2022-12-23
  • 2021-06-11
  • 2021-12-05
猜你喜欢
  • 2021-08-21
  • 2021-09-30
  • 2022-12-23
  • 2021-12-31
  • 2021-08-25
  • 2021-12-24
相关资源
相似解决方案