📔
Codenewb
  • Codenewb
  • [Change Log]
  • C#
    • Pluralsight
      • C Sharp from Scratch
      • Practice exercises
  • Javascript
    • Codeacademy
      • Getting Started with JavaScript
      • Project: Kelvin Weather
      • Project: Dog Years
      • JavaScript version history
      • Conditional Statements
    • Pluralsight
      • Practice exercises
        • HelloWorld.cs
        • HelloWorld2.cs
        • HelloWorld3.cs
  • Powershell
    • Pluralsight
      • Notebook
    • Powershell in a Month of Lunches
  • Python
    • Codeacademy
      • Learn Python 3
      • Practice exercises
        • Basic hello world
        • My name is Inigo Montoya!
        • I would walk 500 miles
    • Pluralsight
      • Python Getting Started
Powered by GitBook
On this page

Was this helpful?

  1. Python
  2. Codeacademy
  3. Practice exercises

My name is Inigo Montoya!

My name is Inigo Montoya!

This script prints "My name is Inigo Montoya"

string1 = "My name is "
string2 = "Inigo Montoya. "
string3 = "You killed my father. "
string4 = "Prepare to die."

# Define message below:
message = string1 + string2 + string3 + string4

print(message)
PreviousBasic hello worldNextI would walk 500 miles

Last updated 5 years ago

Was this helpful?