clubs:python_club:python_club_variables
Home | clubs :: cloud club :: python_club :: 3D-Printing | projects :: Proxmox | Kubernetes | scripting | utilities | games

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)
clubs/python_club/python_club_variables.txt · Last modified: by 127.0.0.1