我有一个pd数据框,其中的文本框称为Text。 我想用空格替换每个换行符。因此我尝试了:
FROM python:3.6.5-slim
RUN apt-get update && apt-get install -y gcc && apt-get autoclean -y
WORKDIR /my-tests
COPY jobfile.py testbed.yaml requirements.txt rabbit.py ./
RUN pip install --upgrade pip wheel setuptools && \
pip install --no-cache-dir -r requirements.txt && \
rm -v requirements.txt
VOLUME /my-tests/archive
ENV TINI_VERSION v0.18.0
ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /tini
RUN chmod +x /tini
ENTRYPOINT ["/tini","--"]
CMD ["easypy", "jobfile.py","-testbed_file","testbed.yaml"]
问题是:如果在应用我的方法后,原来的文字写成\ nthe,那么
有解决方案吗?
答案 0 :(得分:0)
您可以在替换字符中添加一个空格:
df['Text']=df['Text'].str.replace('\n'," ")