Answer:
white balance is the correct answer
Answer:
temperatures = []
i = 0
while i < 5:
try:
t = int(input('Enter a temperature: '))
temperatures.append(t)
i += 1
except ValueError:
print('Enter a number')
print(temperatures)
Explanation:
Hope this helps!
Answer:
Creating a Table
1) Click the Insert tab on the Ribbon
2) Click on Table
3) Highlight the number of columns and rows you’d like
OR
4) Click Insert Table
5) Click the arrows to select the desired number of columns
6) Click the arrows to select the desired number of rows
7) Click OK
To screw with your teacher:
first = (name1 > name2 ) ? name1 : name2;
That code is correct, but your teacher is probably looking for:
if( name1 > name2 )
first = name1;
else
first = name2;
I love the ternary operator!