Answer & Explanation:
To print 10 on a line and each number separated by space; you make the following modifications.
print(str(i)+" ",end=' ')
str(i)-> represents the actual number to be printed
" "-> puts a space after the number is printed
end = ' ' -> allows printing to continue on the same line
if(count == 10):
print(' ')
The above line checks if count variable is 10;
If yes, a blank is printed which allows printing to start on a new line;
The modified code is as follows (Also, see attachment for proper indentation)
count = 0
for i in range(100,201):
if(i%6 == 0 and i%5!=0) or (i%5 ==0 and i%6!=0):
print(str(i)+" ",end=' ')
count = count + 1
if(count == 10):
print(' ')
count = 0
What are the various views available in MS Word?
Microsoft Word gives you five different views of a document, and each has its own advantages over the others. They are Print Layout, Full Screen Reading, Web Layout, Outline and Draft and you can guess what purpose some of them serve just by their names.
That would be Wiki.......
Answer:
Win + Ctrl + D
Explanation:
Stay safe, stay healthy and blessed.
Have a good day !
Thank you