2.2 - coding techniques Flashcards
how do you ask a user to input something
variable = input(“text “)
what is it called to change the type of a variable
casting
what are the 4 main types of variable
str - (string) any characters
int - (integer) whole number
float - (floating point) decimals
bool - (boolean) T/F
how do you change the type of a variable
variable2 = int(variable1)
what is modulus (MOD)
the remainder of dividing two numbers (%)
what is the quotient (DIV)
the exact number of times something divides into something else (//)
how do you code an exponent
**
how do you multiply, divide, add or subtract variables
*, /, +, -
what is a string
a set of characters that can include letters, numbers, spaces and special characters
what is concatenation
adding two strings together (“variable1” + “variable2”)
what is string traversal
locating or making changes to only a certain character or characters rather than the whole string
how do you change case
variable.upper or variable.lower
how do you find the length of a string
len(variable)
how do you create a substring
variable2 = variable1[start:end]
what are the six comparisons you can do with a number
==, !=, <, >, <=, >=
what is selection
using if, elif and else
what is a subprogram (function/procedure)
a piece of code with an identifier that can be called at any point in the code (function has return, procedure doesnt)
how do you code a procedure vs a function
def procedurename():
code
procedurename()
def functionname():
code
return variable1
variable2 = functionname()
what are the two types of loops and their function
While loop - loops as long as a condition is met
For loop - loops a certain number of times
how do you program a while loop
while variable == x:
code
how do you program a for loop
for x in variable_list:
code
or
for x in range(1,9)
code
how do you stop a loop
break