Answer:
basically search tag <img>
Explanation:
<img src="image.gif" alt="MyImage">
I’m pretty sure you can; or u can also screenshot n send, which is what i usually doooo
Answer:
The regular bottle holds 9 fluid ounces less than the family size bottle.
Explanation:
The family size bottle of sunscreen holds 12 fluid ounces
The regular bottle holds 75 percent less
75 percent of 12 = (75/100) X 12 =0.75 X 12 =9
Since the regular bottle holds 75% less, it holds 9 fluid ounces fewer fluid than the family size bottle of sunscreen.
NOTE: The regular size holds three(3) fluid ounces of sunscreen.
Answer:
negatives = []
zeros = []
positives = []
while True:
number = input("Enter a number: ")
if number == "":
break
else:
number = int(number)
if number < 0:
negatives.append(number)
elif number == 0:
zeros.append(number)
else:
positives.append(number)
for n in negatives:
print(n)
for z in zeros:
print(z)
for p in positives:
print(p)
Explanation:
Initialize three lists to hold the numbers
Create a while loop that iterates until the user enters a blank line
Inside the loop:
If the number is smaller than 0, put it in the negatives list
If the number is 0, put it in the zeros list
Otherwise, put the number in the negatives list
When the while loop is done, create three for loops to print the numbers inside the lists
The item that you would most likely to keep in a database is a Payroll record. Payroll records are numbers and inputs/outputs of employees of a certain company. Numbers are easier to manipulate and easier to manage than statements, letters and addresses that are basically letters.