Answers for "assign multiple columns pandas"

0

assign multiple columns pandas

import pandas as pd

df = {'col_1': [0, 1, 2, 3],
        'col_2': [4, 5, 6, 7]}
df = pd.DataFrame(df)

df[[ 'column_new_1', 'column_new_2','column_new_3']] = [np.nan, 'dogs',3]  #thought this wo
Posted by: Guest on September-22-2020

Code answers related to "assign multiple columns pandas"

Python Answers by Framework

Browse Popular Code Answers by Language