Lab Description:
This is where I explain what I have to do and how I went about doing it. Following this is the source code that I will have “written”. Finally the last piece of the lab is the screenshots of my program running, which can be copy and pasted or images.
Code:
(This is not my code, just an example of where code would go)
title = 'this is a string' index = 0 result = '' while index < len(title): letter = title[index] result = result + letter index = index + 1 print (result)
Screenshots:
-I live, I love, I build and I’m content.