Advertisement
FelipeNeto2

Função com str()

Dec 9th, 2019
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.25 KB | None | 0 0
  1. # Define create_spreadsheet():
  2. def create_spreadsheet(title, row_count):
  3.   print("Creating a spreadsheet called "+title+" with "+str(row_count)+" rows")
  4.  
  5. # Call create_spreadsheet() below with the required arguments:
  6. create_spreadsheet("Applications", 10)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement