This is the presentation associated with the python variables video.
[dflip id=”1702″ ][/dflip]
Python Variables Video Question
This is the question that was asked in the python variables video
Question : What is going to be the output of the following:
In [ ]:
name#12 = "Tim"
print(name#12)
[bg_collapse view=”button-blue” color=”#ffffff” icon=”eye” expand_text=”Show Answer” collapse_text=”Hide Answer” ]
This code will result in a Syntax Error as shown below.
In [1]:
name#12 = "Tim"
print(name#12)
[/bg_collapse]