<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
</head>
<body>
<pre data-code-language="python">
def hello(name: str): # <strong class="conum">(1)</strong>
""" Welcomes the person whose name is passed to the function"""
print(f"Hello, {name}") # <strong class="conum">(2)</strong>
</pre>
<ol class="colist"><li><p>This is a function definition.</p></li><li><p>This print statement employs an "f-string"</p></li></ol>
</body>
</html>