Skip to content

Instantly share code, notes, and snippets.

@dbc2201
Created November 26, 2018 19:05
Show Gist options
  • Select an option

  • Save dbc2201/749aded250d32ca187986c3ff3341442 to your computer and use it in GitHub Desktop.

Select an option

Save dbc2201/749aded250d32ca187986c3ff3341442 to your computer and use it in GitHub Desktop.
to generate airport text
def generate_text(str1, str2, num1):
print("{}, go to gate {} for flight {}.".format(str1, num1, str2))
generate_text("Sam Roger", "AI221", 12)
generate_text("Tanya Patel", "AC123", 3)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment