Hey everyone,
This is my first lab report in Emt 1111. We used python in this first lab report. Below is a screenshot of the code.
Code :
title = ‘My name is Ariel Dilone’
>>> title
‘My name is Ariel Dilone’
>>> my name= ‘title’
SyntaxError: invalid syntax
>>> name=title
>>> name
‘My name is Ariel Dilone’