Answer:
once your question is answered you get an option available on the bottom of the answer
<em>see attached</em>
and you click on<u> Mark as brainliest </u>
Answer:
C is the answer to this question.
if(Expression to be tested) {
code to execute
} else if(Expression to be tested) {
code to execute
}
you can have as many else ifs as you want. But that's what it looks like.
Answer:
technology is a whole means to provide goods needed for the survival and comfort of human life
Answer:
ansList =input().split() #get input and split it by space
ansList = [int(i) for i in ansList if int(i)>0] #turn string to integer,and get all positive integers
print(ansList)
Explanation: I think this would work for you. I leace comments in the answer.