Skip to content

Python

Using Python

# main.py

def print_intro(name:str, intro: str) -> str:
  """Prints a greeting and intro"""
    return f"Hello, {name} nice to see you! {intro}"

if __name__ == "__main__":
  friend = "Dear friend"
  intro = "Stay tuned for blog posts on Python"

  print_intro(name=friend, intro=intro)

Note

This is a note to my Python code example.