I'm starting to learn Python and I'm currently using the Plotly Library. For some reason the formatting of my title is causing an error
title_font = dict(
title="<b>Plot</b>",
size=14,
color='black',
family='Arial')
layout = go.Layout(title_font,
xaxis= {'title':'Temperature level'},
yaxis=dict(title='Sea Level'),
hovermode='closest')
The error started when I pulled the Title name out of layout and created a variable for it.