Join() Takes Exactly One Argument (2 Given) December 21, 2023 Post a Comment I'm getting error with this code: Traceback (most recent call last): File './main.py', line 172, in grab_first_name f_name = ''.join(n.split()[0], '\n') TypeError: join() takSolution 1: Probably you meant this:'\n'.join(n.split()[0]) CopySolution 2: Did you mean to say: f_name = n.split()[0] + '\n'CopyBaca JugaAggregating In Panda DataframePytz Timezone Tags To Adjust Date Printed In TemplatesContinous Alphabetic List In Python And Getting Every Value Of It Share You may like these postsClear Memory In Python LoopHow Can I Crawl Web Data That Not In TagsFastest Way To Iterate Pandas Series/columnUnderstanding Lambda Functions Post a Comment for "Join() Takes Exactly One Argument (2 Given)"
Post a Comment for "Join() Takes Exactly One Argument (2 Given)"