Create a string variable that is initialized to your entire name??
Im a little lost
Thanks Kim:)
Create a string variable that is initialized to your entire name??
Im a little lost
Thanks Kim:)
You want to create a string variable with my name? Sure, here it is:
my_name = 'Samuel Robert Dolan'
If that's not what you want, please be more descriptive in your question. :)
my_name declaration initializes a variable and assigns it my entire name "Samuel" (First) "Robert" (middle) and "Dolan" (last). That variable becomes of string type because of it's assigned to a string.