Meteo 273 quiz 1

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/17

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

18 Terms

1
New cards

Code

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

2
New cards

Syntax

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

3
New cards

algorithm

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

4
New cards

debugging

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

5
New cards

IDE

interactive development environment

6
New cards

basic printing

print(‘example’)

7
New cards

f-strings

print(f’example {variable}')

8
New cards

variables

labeled boxes storing information (created with =)

9
New cards

integer

whole numbers

10
New cards

floating-point

numbers with decimals

11
New cards

string

text enclosed in quotes

12
New cards

boolean

true/false logical values

13
New cards

if statement

executes code only when a condition is true

14
New cards

if-else

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

15
New cards

and

true if both conditions are true

16
New cards

or

true if at least one condition is true

17
New cards

not

inverts a boolean value

18
New cards

if-elif-else

used to check multiple conditions in a sequence