파이썬 크롤링 파일저장 개행문자 제거방법을 알고싶어요

cobra의 이미지

for tds in top_2:
val = tds.findAll("td")
review_list.extend([val[0].text])
review_list.extend([val[3].text,val[4].text])

file = open('data추가.txt', 'w', encoding='utf-8')
review=[]

for review in review_list:
file.write(str(review)+'\n')

file.close()

코드를 실행하면 아래와 같이 data.txt에 저장이되는데

1

사과

2

바나나

복숭아

번호를제외하고 문자열을 이어서 저장할수없나요??

예)

1

사과배

2

바나나복숭아

chanik의 이미지

개행문자는 자동으로 들어간 것이 아니고
cobra님이 그렇게 코딩하신 것입니다.
아래 코드를 보면 '\n'를 모든 항목에 붙이셨네요.

for review in review_list:
    file.write(str(review)+'\n')

아래와 같이 3개씩 소그룹으로 나누고 각 그룹의 첫 멤버에만 '\n'를 붙인다든지 하면 되겠습니다. ( 참고: https://stackoverflow.com/questions/4998427/how-to-group-elements-in-python-by-n-elements )

for review_by3 in [review_list[n:n+3] for n in range(0, len(review_list), 3)]:
    file.write(str(review_by3[0])+'\n')
    for review in review_by3[1:]:
        file.write(str(review))
    file.write('\n')

처음 리스트를 만들때 아예 소그룹으로 나눠 만든다든지 해도 되겠고요.

혹시, 각 필드 문자열에 기본적으로 '\n'가 다 들어가있는 문제라면, 아래와 같이 strip()을 적절히 쓰면 좌우 공백을 제거할 수 있습니다.

        file.write(str(review).strip())
chanik의 이미지

그리고, 코드 샘플 올리실 때 아래와 같이 [code] 태그를 이용하시면 파이썬 코드를 깨끗하게 올릴 수 있습니다. 글 저장 전에 미리보기 버튼으로 레이아웃을 미리 확인해볼 수 있으니 실험해보시면 도움이 될 것입니다.

[code lang="python"]
파이썬 코드
[/code]

cobra의 이미지

자세한 설명 감사드리고 많이 배웠습니다...

cobra의 이미지

자세한 설명 감사드리고 많이 배웠습니다...

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.