Python Forum
Cant Append a word in a line to a list err "str obj has no attribute append
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Cant Append a word in a line to a list err "str obj has no attribute append
#1
Hey everyone,

I am trying to get every word in line to a list however i am getting error " AttributeError: 'str' object has no attribute 'append'". Any ideas are welcome, thanks in advance.

if satırsayısı2==isimsatırlistesi[0]:
        for word in line2:
            word.append(str(adressatırı)) #[b]AttributeError: 'str' object has no attribute 'append'[/b]
            satırdakikelimesayısı=len(adressatırı)
            print(adressatırı[2:satırdakikelimesayısı])
Reply
#2
wrd=[]
if satırsayısı2==isimsatırlistesi[0]:
        for word in line2:
            wrd.append(str(adressatırı)) 
            satırdakikelimesayısı=len(adressatırı)
            print(adressatırı[2:satırdakikelimesayısı])
entireLine=",".join(wrd)
Reply
#3
You have not supplied enough information. What is line2? What is adressatiri? What are your trying to do with this:
word.append(str(adressatırı))
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Entry field random pull from list, each return own line Bear1981 6 744 Feb-25-2025, 06:09 AM
Last Post: Pedroski55
  yield question with append gnomegordon 2 671 Dec-04-2024, 06:47 PM
Last Post: gnomegordon
  Append from csv to xlsx with values only Sick_Stigma 2 719 Aug-06-2024, 08:05 PM
Last Post: Sick_Stigma
  append str to list in dataclass flash77 6 3,356 Mar-14-2024, 06:26 PM
Last Post: flash77
  Append inside for? johnywhy 10 2,760 Jan-15-2024, 11:08 PM
Last Post: johnywhy
  Building a DoublyLinkedList in Python - - append method Drone4four 2 1,227 Jan-08-2024, 01:27 PM
Last Post: Drone4four
Question How to append integers from file to list? Milan 8 2,871 Mar-11-2023, 10:59 PM
Last Post: DeaD_EyE
  Big O runtime nested for loop and append yarinsh 4 2,820 Dec-31-2022, 11:50 PM
Last Post: stevendaprano
  [SOLVED] [Beautifulsoup] Find if element exists, and edit/append? Winfried 2 6,986 Sep-03-2022, 10:14 PM
Last Post: Winfried
  read a text file, find all integers, append to list oldtrafford 12 9,859 Aug-11-2022, 08:23 AM
Last Post: Pedroski55

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020