Posts by Eu001001 • 199 points
4 posts
-
3
votes1
answer46
viewsQ: Can someone help me get on board?
function Somar() { var somaN1 = window.document.querySelector('input#somaN1') var somaN2 = window.document.querySelector('input#somaN2') var somaRes = window.document.querySelector('span#somaRes')…
-
1
votes1
answer356
viewsQ: What is the AS in Python for?
Please someone help me with this. Explaining why, what and how AS works in Python.
-
9
votes2
answers4659
viewsQ: What is the flush parameter of the print function?
I realized that there is the parameter flush in function print python: print(*objects, sep=' ', end='\n', file=sys.stdout, flush=False) I know that: The parameter *objects sets the list of values to…
-
6
votes4
answers162
viewsQ: What is the difference between the operator IN and ==?
I would like to know the difference between the operator IN and the == in Python?