Python Strings Presentation


This is the presentation associated with the python strings video.

Download Presentation

Python Strings Video Question

This is the question that was asked in the python string video

Question : 

Assign the below line to a string “question” and print it.
He questions, "What does it mean?".
In [1]:
question = 'He questions, "What does it mean?".'

print(question)
He questions, "What does it mean?".