User Profile Generator

Easy
#strings #io

Input: `name` (str), `age` (int). Return: String 'My name is [name] and I am [age] years old'.

Example

Input: 'Alice', 20
Output: 'My name is Alice and I am 20 years old'
Need a hint?
  • Use f-strings for cleaner code
Run your code to see output