Question: Q0637 According to the 2017 Python Developer's Survey, the IDE (Integrated Development Environment) used by Scientific Python Developers breaks down as follows: PyCharm Professional =


Q0637 According to the 2017 Python Developer's Survey, the IDE (Integrated Development Environment) used by Scientific Python Developers breaks down as follows: PyCharm Professional = 12% PyCharm CE = 17% Sublime Text = 9% Vim = 8% IDLE = 7% Atom = 7% VS Code = 6% Notepad + + = 6% Eclipse = 3% Emacs = 3% Build a bar chart of the IDES used by Python Developers in 2017. dev_lang=[ 'pycharm professional' , 'pycharm ce' , 'vim', 'idle', 'atom' , 'vs code', 'notepad' , 'ecplipse', 'emacs' ] pre_use=[ 12 , 17 , 9 , 8, 7, 7,6,6,3,3] X_pos=np . arange ( len (dev_lang ) ) plt . bar (x_pos , pre_use, align='center' ) pit . ylabel ( "precentage usage" ) pit. xlabel ( "developer language" ) pit . show ( )
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
