I am assigning some variables to values from a data frame. The data frame created using this code
data = [['tom', 10], ["", 15], ['juli', 14]]
df = pd.DataFrame(data, columns=['Name', 'Age'])
So after using data.head()
Name Age
0 tom 10
1 15
2 juli 14
if one name or more names are missing or it's defined as an empty string like here. I would like to assign a variable whenever there is an empty string