Meteo 273 quiz 1

studied byStudied by 0 people
0.0(0)
learn
LearnA personalized and smart learning plan
exam
Practice TestTake a test on your terms and definitions
spaced repetition
Spaced RepetitionScientifically backed study method
heart puzzle
Matching GameHow quick can you match all your cards?
flashcards
FlashcardsStudy terms and definitions

1 / 17

encourage image

There's no tags or description

Looks like no one added any tags here yet for you.

18 Terms

1

Code

the instructions written in a programming language that a computer can execute (python)

New cards
2

Syntax

the rules and structure of how code must be written for it to run correctly

New cards
3

algorithm

a step-by-step set of instructions to solve a problem

New cards
4

debugging

the process of finding and fixing errors (or “bugs”) in your code

New cards
5

IDE

interactive development environment

New cards
6

basic printing

print(‘example’)

New cards
7

f-strings

print(f’example {variable}')

New cards
8

variables

labeled boxes storing information (created with =)

New cards
9

integer

whole numbers

New cards
10

floating-point

numbers with decimals

New cards
11

string

text enclosed in quotes

New cards
12

boolean

true/false logical values

New cards
13

if statement

executes code only when a condition is true

New cards
14

if-else

when you need to take one action if a condition is true and another if it is false

New cards
15

and

true if both conditions are true

New cards
16

or

true if at least one condition is true

New cards
17

not

inverts a boolean value

New cards
18

if-elif-else

used to check multiple conditions in a sequence

New cards
robot