This is the word for setting a variable to a value
What is (variable) assignment?
This is the type of data on which we can do mathematical operations
What are numbers?
This is a block of code that loops through a variable or a specific number of times
What is a for loop?
This is the terminal text editor that we use on the server
What is VIM?
This is the word for the information you can find online about Python
What is documentation?
This is the word for a loop inside of another loop
What are nested loops?
This type of data can store any symbols and is denoted by quotation marks
What are strings?
This is a block of code that repeats on a certain condition
What is a while loop?
This is the terminal command to remove a file
What is rm?
What is a list of characters?
This is the repetition of something
What is iteration?
This type is an unordered, changeable collection of data
What is a list?
This is the keyword we use to load in external code
What is import?
This is the command to save and exit from the text editor we use
What is :wq?
This is the operating system that our server runs on
This is a block of code that changes how the computer runs through the program
What is a control structure?
This is the type of data of True/False values
What is a Boolean?
This is the keyword you use to create a function
What is def?
This is the terminal command to create a folder
What is mkdir?
This is the word for numbers that are somewhat random generated by a computer
What is pseudorandom
This is a packet of functions that aren't built in which we load into our program
What is a module?
This type is an unordered, unchangeable collection of data
What is a tuple?
This is the operation we use to find the remainder of division (give the name and the symbol)
What is modulo (%)?
This is the terminal command to go back one folder
What is cd ..?
These are the two major modes that we use in the terminal text editor
What are normal and insert modes?