1: Functions, Variables Flashcards
1
Q
python hello.py
A
2
Q
functions
A
verbs or actions the computer will already know how to perform
3
Q
arguments
A
4
Q
side effects
A
5
Q
bugs
A
mistakes - a natural part of coding
6
Q
return values
A
7
Q
variables
A
container for a value within your own program
8
Q
comments
A
9
Q
pseudocode
A
10
Q
str
A
string
11
Q
docs.python.org
A
12
Q
docs.python.org/3/library/functions.html
A
13
Q
docs.python.org/3/library/functions.html#print
A
14
Q
print(#objects, sep=’ ‘, end=’\n’, file=sys.stdout, flush=False)
A
15
Q
parameters
A
16
Q
docs.python.org/3/library/stdtypes.html#string-methods
A
17
Q
int
A
18
Q
+ - * / %
A
19
Q
interactive mode
A
20
Q
float
A
21
Q
docs.python.org/3/library/functions.html#round
A
22
Q
round(number[, ndigits])
A
23
Q
def
A
24
Q
scope
A
25
Q
return
A