Answer:Use \n in your print function after text to keep writing in the next line
Explanation:
For example,
print("first line \n second line")
output would be:
first line
second line
what are 3 most common Operating systems
Answer: Microsoft Windows, Mac OS X, and Linux
Explanation:
Is this the answer you want or is it something else?
Answer:
Microsoft Windows, MacOS, Linux
Explanation:
These are the most common types.
The visitor's age is stored in the variable age, the day of the week is stored in a variable day, and the price in dollars is stored in the variable price. Which piece of code will correctly decide the price for each ticket.
Answer:
If a museum charges different prices based on the day of the week and age of the visitor. The pricing rules are shown below.
- On Tuesday and Thursday children 10 and under get in free ($ 0).
- For all other days and ages the cost is ten dollars ($ 10).
The code in python is;
if (day == 'Tuesday' or day == 'Thursday') and age <= 10:
price = 0
else:
price = 10
Explanation:
The logic of the algorithm suggests that that the conditional if-statement assigns zero to the price variable if the day variable is either Tuesday or Thursday and the child's age is 10 or below but assigns 10 to the price variable if the condition is not met.
2x=y t-09 3xX=v 8x0=?+ 87-6x5=
Answer:
6
x
3
+x
2
+2x
Explanation:
One easy way to tell if a cell contains a formula instead of data is to click on the cell and look at the formula bar to
see if it
A. contains a number.
B.contains any parentheses.
C.begins with an equal sign.
D.begins with an operator.
Answer:
C.. begins with an equal sign.
Explanation:
EDGE2021