Answer:
user_name = input("input user name: ")
print(len(user_name))
Explanation:
input - input function in python
len - length of value
print - print data
Answer:
A. provides examples of creative work such as writing, film, or art
C. can be referenced in your resume and taken to job interviews
D. is well organized and easy for a potential employer to find and digest
Explanation:
Here is the right answer.
Answer:
Abstraction is the process of removing or taking away certain characteristics to reduce or hide several very important characteristics.
In OOP (Object Oriented Programming), to increase efficiency and reduce complexity, a programmer hides certain vital data about an object. This is abstraction in programming.
For further clarification, a programmer ensures that the name given to an entity makes sense and most importantly, that it carries relevant aspects, and non essential parts are not included.