Login
Remember
Register
Ask a Question
How do you do data abstraction in Python?
0
votes
asked
Sep 25, 2021
in
Python
by
john ganales
How do you do data abstraction in Python?
data-abstraction
Python-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Sep 25, 2021
by
john ganales
An abstraction means hiding away information or showing only information that’s necessary.
Example
print(len((1,2,3,1)))
...