Answer:
No
Explanation:
I would not advise a couple to force feed their toddler Brussels sprouts, but if their toddler wanted them and ate them then i would advise them to let them.
I believe your answer is true. Hope this helps! :)
-K <3
Answer:
To take a screenshot of the entire screen, press the Print Screen (it could also be labeled as PrtScn or PrtScrn) button on your keyboard. It can be found near the top, to the right of all the F keys (F1, F2, etc) and often in line with the arrow keys.
Explanation:
Answer:
The function is as follows:
def concList(aList):
retList = ""
for i in aList:
if(str(i).isdigit()):
retList+=str(i)
else:
retList = "Not digits"
break;
return retList
Explanation:
This defines the function
def concList(aList):
This initializes the return string to an empty string
retList = ""
This iterates through aList
for i in aList:
This converts each element of the list to an empty list and checks if the string is digit
if(str(i).isdigit()):
If yes, the element is concatenated
retList+=str(i)
If otherwise
else:
The return string is set to "No digits"
retList = "Not digits"
And the loop is exited
break;
This returns the return string
return retList