Answer:
Video Tutorial
Explanation:
The others don’t make sense.
B. Put it in quotes if it is directly quoted as is and cite the source. You should likely also list the source in the works cited but not the phrase itself.
Answer:
cannot be used outside of its intented purpose
Explanation: python keywords are special reserved words that have specific meanings and purposes and can't be used for anything but those specific purposes
Answer:
crt (cathode ray tube) vcr (video cassette recorder)
Explanation:
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.