Table of Contents

, , , , , , , , ,

About the Club

Python Club Topics - Variables

Questions

  1. What a variables?

Variables

  1. Created only when a value is assigned
    x = 10
  2. print the variable ( to the screen )
    print(x)
  3. Create a new variable: y
    y = "Coding"
    print(y)

Capitalization Matters

  1. These are different variables
    name = "Mike"
    Name = "Mike D"
    NAME = "Mike D in the place to be"
     
    print(NAME)
    print(name)
    print(Name)