click below
click below
Normal Size Small Size show me how
Graves Python Intro
Skill Struck Python Intro and Var
| Term | Definition |
|---|---|
| python | One of the most popular programming languages used today. This is used for websites, apps, games, and other software. |
| web-development | The process of creating websites |
| front-end | The part of website building that works on what the user sees, the design and navigation of the website. Client-side. |
| back-end | The part of the website that processes data, organizes and saves information. Server-side. |
| syntax | The spelling and grammar of a programming language |
| print (in Python) | Creates a visual representation of your code's output |
| console | The area of a computer that notes from a program can be printed to. Kind of like a notebook. |
| (Python) variable | A container that stores information. Example: height = 16. The variable named height contains the integer value of 16. |
| best practice | The standard set of rules in programming that helps improve code. |
| output | The result of a program. What the program generates in the end. |
| print "Hello!" | This code gives back an error. Why? |
| print (Hello!) | This code gives back an error. Why? |
| print =("Hello!") | This code gives back an error. Why? |
| print ("Hello!") | What does this code produce? |
| age = 16 | What is the value? What is the variable? |
| school = ("Cannon") | What is the value? What is the variable? |