0 votes
in Python by
How do you do data abstraction in Python?

1 Answer

0 votes
by
An abstraction means hiding away information or showing only information that’s necessary.

Example

print(len((1,2,3,1)))
...