gpt4 book ai didi

python - 在每个单词前添加 Virgula

转载 作者:行者123 更新时间:2023-11-28 20:02:18 26 4
gpt4 key购买 nike

我有一个一千多行的文本文件,为了某个过程我需要用逗号分隔单词。因为我是从这门语言开始的,所以我需要帮助在 python 中开发这个算法

恩特拉达

input phrase of the file to exemplify

赛伊达

input, phrase, of, the, file, to, exemplify

我正在尝试这样:

import pandas as pd

sampletxt = pd.read_csv('teste.csv' , header = None)
output = sampletxt.replace(" ", ", ")

print output

最佳答案

the_list = entrada.split(" ") # take input & make a list of all values, separated by " "
saida = the_list.join(", ") # join all elements with ", "

关于python - 在每个单词前添加 Virgula,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46697440/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com