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)))

Related questions

+1 vote
asked Jan 11, 2021 in Python by SakshiSharma
0 votes
asked Jun 28, 2020 in Python by Robindeniel
...