Home > other >  get number from cell in python
get number from cell in python

Time:11-22

I use hours.loc[numb] to get cell in column if I print this He prints it but like that: print:

how can me get Hours number only Without the rest of the printed stuff

CodePudding user response:

try this:

hours.loc[numb].values
  • Related