Python Variables Presentation


This is the presentation associated with the python variables video.

Download Presentation

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)

This code will result in a Syntax Error as shown below.

In [1]:
name#12 = "Tim"
print(name#12)
  File "<ipython-input-1-2188757f316f>", line 2
    print(name#12)
                  ^
SyntaxError: unexpected EOF while parsing