I am trying to lowercase one of the columns(A_description) of a dataframe(df) and getting the error-"'Column' object is not callable".Code: def new_desc(): for line in df: line = df['A_description'].map(str.lower) return line new_desc()Have used...
No replies to display.
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.