Pythondex

Exercise

String Manipulation Exercise

In this exercise, you'll practice working with strings. You'll concatenate, repeat, and print them in a formatted way.

Task

Write a Python program that:

  • Creates variables for:
    • first_name – your first name
    • last_name – your last name
    • nickname – a fun nickname
  • Prints the full name by concatenating first and last name
  • Prints a greeting using your nickname
  • Prints your nickname repeated 3 times on one line

Example Output

Solve