Variables and built in functions in Python, String manipulation.
We can store data in our computer memory.
- Write something you can easily remember
- Always store your values in a variable if you want to reuse for an operation.
firstname = "Kennedy"
first_name, last_name, age, lga, validation = "Kennedy", "Ekanem", 89, "Eket", False
- We have many built-in function? Right? I want you to pick 10 built-in funtions and tell me how to use it.
- What are Parameters in functions and how can we use them?