Whats the use of keyword argument if we can rewrite it?

Define create_spreadsheet():

def create_spreadsheet(title,row_count=1000):
print(“Creating a spreadsheet called " + title + " with” +" “+str(row_count) + " rows.”)

Call create_spreadsheet() below with the required arguments:

create_spreadsheet(“Applications”,10)

Not really sure what you are asking. Does it have to do with this?