Answer:
i hate clowns alot especially pennywise lol
Explanation:
 
        
             
        
        
        
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
 
        
             
        
        
        
Answer:
Answered below
Explanation:
//Program is written in Python programming //language.
number_of_trees = int(input ("Enter number of trees purchased: "))
height_of_trees = float(input("Enter height of trees: "))
delivery_status = input("Do you want trees delivered? enter yes or no ")
price_of_two_meters = 20
total_price = number_of_trees * price_of_two_meters
//Invoice
print (number_of_trees)
print(height_of_trees)
print (total_price)
print (delivery_status)
 
        
             
        
        
        
Answer:
Explanation:
If L(D1) = L(D2), the D has every state being final
If L(D1) = L¯(D2), the D has every state being final
If L(D1) = ∅, then L(D) = L(D2).
If L(D1)=Σ, L(D) = L(D2)
 
        
             
        
        
        
Answer:
The correct option is;
Content controls
Explanation:
Content controls are customizable controls that can be added to forms, templates and document that enable users to identify or preview the expected data that fills a given form field
Content controls can be in the form of instructional text that give users an idea of the expected format of the content of a given form field, such that the text disappears as soon as the user starts typing in their own text.