df.dtypes()
Displays data types of df columns
df[xyz].astype()
Converst series’s datatype to argument specified. Arguments:
-str
-int
-Bool
-obj
-etc.
.str.upper
converts string to all uppercase
.str.lower
converts everything to lowercase
.str.split()
Last changed2 years ago