Intro To Python Flashcards
What is an algorithm?
A step by step list of instructions that if followed exactly will solve the problem under consideration
What is the goal in computer science?
Is to take a problem & develop an algorithm that can serve as a general solution
What is the most important skill for a computer scientist?
To be able to solve problems
True or false. High-level languages are easier to program in
True
They take less time to write
They are shorter and easier to read
They are more likely to be correct
They are portable = can run on all different kinds of computers
Source code is another name for what?
The instructions in a program, stored in a file
Python is a high-level language, but must be interpreted into machine code called “_______” before it can be executed
Binary
It is high-level if the program must be “__________” before it can run
It is low-level if the computer can execute it w/out “_________ __________”
Processed
Additional processing
What is the difference between compilers and interpreters?
Compilers:
- take the entire source code & produce object code
Ex. Translating an entire book
Interpreters:
- execute the code line by line
Ex. Translating a line at a time in a book
Computing science is the study of “__________”
Algorithms
What is a programming language?
Provide a set of instructions & syntax rules for writing code that can implement algorithms to perform specific tasks or problems
What is the role of the python interpreter?
Translation process?
Computer execution?
Source code —> python interpreter —> output/results
Translation process:
- transforms code into language the computer understands
Computer execution:
- translated code —> sent to computer for execution
What are “code blocks” in python?
Sections of code that tell the computer to do something specific
Can include loops, functions, and if statements etc…
Need “____” to run python code
This is like a “_______” write down what is made & follow instructions step by step
IDE (integrated development environment)
**NOTE: in CMPUT 101 we use IDLE (integrated development and learning environment)
Recipe
Python code is executed from “_____” to “_______”
Top to bottom
“Hello world” is what?
A string
Can use single or double quotations
How do you concatenate (join) strings together in python?
Do this by using the “+” operator
Ex. “Hello” +” “ + “World”
Who or what typically finds syntax errors?
The compiler / interpreter
What is a syntax error?
Give an example…
Syntax refers to the structure of a program and the rules about that structure
Ex. Forgetting a colon at the end of a statement where one is required
What is a runtime error?
Called this because the error does not appear until you run the program
Rare in the simple programs seen in the first few chapters
Ex. Attempting to divide by zero
What typically finds runtime errors?
The interpreter
If an instruction is illegal to perform at that point in the execution
The interpreter will stop with a message describing the exception
What is a semantic error?
Give an example
If there is one in your program it will run successfully in the sense that there is no error messages
HOWEVER the problem is that your program you wrote is not the program you wanted to write
The program or ‘sementics’ is wrong
Ex. Forgetting to divide by 100 when printing a percentage amount
- will give a wrong answer because the programmer implemented the solution incorrectly
Who or what typically finds semantic errors?
The programmer
You must fully understand the problem so that you can tell if your program properly solves it
What is the difference between programming and debugging?
Programming is the process of writing the source code
Debugging is the process of finding and correcting all the errors w/in the program until it is correct
Programming languages are “______” languages that have been designed to express computations
Formal
Why is indentation so important in python?
Relies on this to *group statements together”
Code bocks are defined by their level of indentation
Each indentation must be consistent throughout the code block
What does the input() function do?
Prompts user to input something in the shell
What are comments?
Lines that are ignored by the computer
Good for explaining and keeping track of different parts of code
How do you assign variables in python?
With the operator “=“
Ex. course = 101
True or false. You can have spaces in variable naming
False
Cannot have space, must be one unit
INSTEAD we can use __ (underscores)
Ex. “user_name”
True or false. You can’t start a variable name with a number
True
You CAN use numbers, just cannot start it with one
Ex. “user_name1” = good
VS
Ex. “1user_name” = bad
Strings and numbers CANNOT be directly mixed
What does this mean?
Ex.
Num = 5
Numstr = “5”
Num + numstr
Traceback error unsupported operand type for +: ‘isn’t’ and ‘str’
The functions (int, float and str) are called “_____” conversion functions
Type
What value is printed when the following statement executes?
print( int(53.785) )
53
NOTE: this does not round to the closest integer
What is printed when the following statement executes?
day = “Thursday”
day = 32.5
day = 19
print (day)
19
The variable day will contain the last value assigned to it when it is printed
True or false. You cannot have an illegal character such as “&” or “+” or “$” when naming variable
True
Ex. more$ = 1000000
Incorrect ^^^ CANNOT have the “$” in there
What is formatted output in python?
Allows you to create a custom string by combining texts and values
Given the variables:
num = 101
name = ‘Mark’
print(‘My number is: {}, and my name is {}’.format(num,name))
print(‘My number is: {one}, and my name is:{two}’.format(one=num,two=name)
What are operators?
Special tokens that represent computations like addition, multiplication and division
Ex. +, *, /
What does the operator “//“ do?
Called integer division
It always truncates its result down to the NEXT smallest integer
Ex. print(18 // 4)
Gives the integer 4
NOT the floating point 4.5
What is printed when the following statements execute?
n= input(“Please enter your age: “)
# user types in 18
print ( type (n) )
<class ‘str’>
Classified and read as a string
NOTE: all input from users is read in as a string