Lab Report Example

Lab Description:
This lab is about making a code to display “this is a string” as the title of a program.

Code:

title = 'this is a string'
index = 0
result = ''
while index < len(title):
letter = title[index]
result = result + letter
index = index + 1
print (result)

Screenshots: