>>> %matplotlib inline results in SyntaxError: invalid syntax

Alan Gauld learn2program at gmail.com
Mon Dec 25 14:53:02 EST 2023


On 25/12/2023 05:34, geetanajali homes via Python-list wrote:

>> import numpy as np 
>> import pandas as pd 
>> import random 
>> import matplotlib.pyplot as plt 
>> %matplotlib inline 
>>
>> I get an error on the last line. I am running this code in Idle Python 
>> 3.4.4 Shell... 

Python names can't start with a % (its the modulo or
string formatting operator).

I know nothing of the innards of matplotlib so I can only
suggest a closer examination of their tutorial information.

-- 
Alan G
Author of the Learn to Program web site
http://www.alan-g.me.uk/
http://www.amazon.com/author/alan_gauld
Follow my photo-blog on Flickr at:
http://www.flickr.com/photos/alangauldphotos




More information about the Python-list mailing list