How can we give, or assign, a string value to a variable?

my_name: Truthymy_name = "Truthy"my_name: "Truthy"my_name = Truthy

Yes! We need quotation marks in order to declare a string, and an = sign to assign that string to the variable.

Well, almost! We need quotation marks in order to declare a string, and an = sign to assign that string to the variable.