×

Welcome to TagMyCode

Please login or create account to add a snippet.
0
0
 
0
Language: Python
Posted by: Matthew J_
Added: Jun 23, 2022 6:55 AM
Views: 10
Tags: no tags
  1. def greet_user(username):
  2.  """Display a simple greeting."""
  3.  print(f"Hello, {username.title()}!")
  4.  
  5. greet_user('jesse')