Computing (y8) Flashcards
(10 cards)
Algorithm
An Algorithm is a set of instructions or rules to be followed to carry out a task.
Python
Python is a programming language, that we have taught computers to understand.
Syntax
Syntax is the rules and structure of a language.
variable
a memory location that holds data for us, (it can be any type of data)
What does the print function do?
Displays what is written in the speech marks to the user.
We can interact with computers by giving them an
input
process
Once the computer receives the input, it does something with it
After the process is finished, the computer normally gives an
output
How do you get the user to enter their name and store it as a variable called name.
name = input(“What is your name?”)