Control + P (push these buttons at the same time)
or right click and print.
if you are printing a webpage, the steps are the same.
if you are using Word, then you just need to find the File tab and print should be in the list.
The device which provides any piece of information from a computer into human-readable form is known as the Output device.
Explanation:
lst = [12,10,32,3,66,17,42,99,20]
a)
for x in lst:
print(x)
b)
for x in lst:
print(str(x) + " " +str(x**2))
I think this is what you're looking for. Hope this helps!