Computer Science, asked by varshinisai436, 17 days ago

which stament give exact no of values in data frame? ​

Answers

Answered by veeraswamy708
0

Answer:

df = pd. DataFrame({"Letters": ["a", "b", "c"], "Numbers": [1, 2, 3]})

print(df)

index = df. index.

number_of_rows = len(index) find length of index.

print(number_of_rows)...

I hope it May helpful to you ...

Similar questions