Hi,
The answer is all of the above. Its best to know your audience as best as you can that way you are able to think about it better.
Hope this helps.
r3t40
Answer:
External users will be able to access the message.
Explanation:
When dealing with the internal email system of an enterprise, it's possible to do a recall on the message. If someone on the internal list didn't open the message yet, it will simply be deleted from his queue and it will appear as is that email never existed.
For external users, once the email has been sent, it cannot be recalled... so they'll be able to access it no matter what, because that email exists on an external server on which you have no management control.
Function demo {
If (value & gt;0);
If-else (...)
If-else (...)
}
I’m not on the computer right now but lemme know if this doesn’t work. Try going to inspect element on your html page and then console log and your issue should show their.
You may need to add a try and catch but idk.
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.