Skip to content

ThePythonBootCamp/variables

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

variables

Variables and built in functions in Python, String manipulation.

Variables

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.
Declaring a single line variable

firstname = "Kennedy"

Declaring a multiline variable

first_name, last_name, age, lga, validation = "Kennedy", "Ekanem", 89, "Eket", False

Assignment 1
  • 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?

About

Variables and built in functions in Python, String manipulation.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages