Python Variables Presentation


This is the presentation associated with the python variables video.

[dflip id=”1702″ ][/dflip]

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)

[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)
  File "<ipython-input-1-2188757f316f>", line 2
    print(name#12)
                  ^
SyntaxError: unexpected EOF while parsing

[/bg_collapse]