6 ways to select columns from pandas DataFrame
Select column using column name with "." operator or []. Get all column names using columns method or using info() method. Describe the column statistics using describe() method. Select particular value in a column
5 ways to select multiple columns in a pandas DataFrame
Pandas select multiple columns using column name with [], columns method, loc[] function, iloc[] function, drop() method
6 ways to add column to existing DataFrame in pandas
In this tutorial we covered following methods which can be used to add column to existing dataframe using [] with None value, [] with Constant value, [] with values, insert() method, assign() method, [] with NaN value
7 ways to convert pandas DataFrame column to int
In this article we covered multiple examples to convert different types of column to int type in pandas DataFrame

