###### Difficulty: Beginner

###### Category: Strings

## Title: Hello Name

Given a variable string name, e.g. 'Bob', return a greeting in the form of 'Hello Bob!'.

Examples

- helloName('Abe') → Hello Abe!
- helloName('Amy') → Hello Amy!
- helloName('Bob') → Hello Bob!

#### Hints

Hide Hint

JavaJavaScriptPython

DarkLight

13px16px18px24px

ResetRedoUndoRunSubmit

9

1

2

3

4

5

›

import sys

def helloName(name):

# YOUR 4SPACEINDENTEDCODEvvv

# YOUR 4 SPACE INDENTED CODE^^^

#### Test Results

Hide Results

v0.9.9.0
