1 Word processing software: are digital versions of the manual typewriter and can be used to write, edit, print and perform various modifications to a document
2 Electronic mail: helps to exchange messages and share pictures, data files and audio and video clips
3 Presentation software: helps to inform or demonstrate an idea in the form of a slide show using images or presentation graphics
4 Spreadsheet software: are digital versions of the paper based accounting sheets used to share, organize and manipulate data
5 Database software: are tools that store large quantities of related data and information
Let me know if you have any questions.
import math as m
def print_word(N, W, retries = 4):
for _ in retries:
if(N > 100 or N < 0 or len(W) > 50):
print("Number is out of range or word is too large. Try again.")
new_word = str(input("New word: "))
new_num = int(input("New number: "))
if(new_num >= 0 and new_num <= 100 and len(W) <= 50):
for row in new_num:
print(new_word)
return "Thank you for your time!"
if(N >= 0 and N <= 100 and len(W) <= 50):
for row in N:
print(W)
return "Thank you for your time!"
try:
N = m.floor(int(input("Enter a number from 0 to 100: " )))
W = str(input("Enter a word: "))
except ValueError:
print("Invalid Input!")
print(print_word(N,W))
What? what are you asking