For this lab I typed an example on how a lab report should like , my experience with this was easy!
title = ‘this is a string’
index = 0
result = ”
while index < len(title):
letter = title[index]
result = result + letter
index = index + 1
print (result)