Respuesta :
In this exercise we have to use the knowledge of the python language to write the code, so we have to:
The code is in the attached photo.
knowing what string is:
String is a collection of alphabets, words or other characters. It is one of the primitive data structures and are the building blocks for data manipulation.
So to make it easier the code can be found at:
my_string = 'Hello'
print(my_string)
my_string = "Hello"
print(my_string)
my_string = '''Hello'''
print(my_string)
# triple quotes string can extend multiple lines
my_string = """Hello, welcome to
the world of Python"""
print(my_string)
See more about python at brainly.com/question/26104476
