Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

pandas delete spaces

df.columns = df.columns.str.strip()
Comment

pandas delete spaces

df.columns = df.columns.str.rstrip()
Comment

pandas strips spaces in dataframe

df_obj = df.select_dtypes(['object'])
print (df_obj)
0    a  
1    c  

df[df_obj.columns] = df_obj.apply(lambda x: x.str.strip())
print (df)

   0   1
0  a  10
1  c   5
Comment

pandas delete spaces

df.columns = df.columns.str.lstrip()
Comment

pandas remove whitespace

str.strip() method
Comment

remove whitespace from data frame

# importing library
import pandas as pd
 
# reading csv file and at a same time using skipinitial attribute which will remove extra space
df = pd.read_csv('student_data.csv', skipinitialspace = True)
 
# printing dataset
print(df)
Comment

PREVIOUS NEXT
Code Example
Python :: how to install from url in python 
Python :: api in python 
Python :: qradiobutton example 
Python :: python Non-UTF-8 code starting with 
Python :: tkinter messagebox 
Python :: check if string is empty python 
Python :: Python Creating string from a timestamp 
Python :: int object is not subscriptable in python 
Python :: python read pdf 
Python :: append a zeros column numpy 
Python :: km/h a m/s 
Python :: factorial program 
Python :: change date format python code 
Python :: how to make minecraft using python 
Python :: fixed precision float python 
Python :: pytesseract.image_to_string save text file 
Python :: python check if two lists intersect 
Python :: how to add an item to a list in python 
Python :: or operator in django queryset 
Python :: python print raw string 
Python :: how to determine python project parent dir 
Python :: python turn off printing 
Python :: import error in same directory python 
Python :: create a new dataframe from existing dataframe pandas 
Python :: get a colomn of csv in pandas 
Python :: import local module python 
Python :: python get desktop directory 
Python :: how download youtube video in python 
Python :: pygame.rect 
Python :: is number python 
ADD CONTENT
Topic
Content
Source link
Name
7+7 =