<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									Plot a bar chart to depict the popularity of various programming languages - Python				            </title>
            <link>https://discuss.codewithbishal.com/python/plot-a-bar-chart-to-depict-the-popularity-of-various-programming-languages/</link>
            <description>Discuss Discussion Board</description>
            <language>en-US</language>
            <lastBuildDate>Mon, 27 Apr 2026 17:29:34 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>Answer to: Plot a bar chart to depict the popularity of various programming languages</title>
                        <link>https://discuss.codewithbishal.com/python/plot-a-bar-chart-to-depict-the-popularity-of-various-programming-languages/#post-54</link>
                        <pubDate>Sun, 27 Nov 2022 19:34:01 +0000</pubDate>
                        <description><![CDATA[Code:

import matplotlib.pyplot as plt
import numpy as np


prog_lanugages = (&#039;Python&#039;, &#039;C++&#039;, &#039;Java&#039;, &#039;Perl&#039;, &#039;C&#039;, &#039;Lisp&#039;)


x = np.arange(len(prog_lanugages))


performance = [...]]></description>
                        <content:encoded><![CDATA[<p>Code:</p>
<div>
<pre contenteditable="false">import matplotlib.pyplot as plt
import numpy as np


prog_lanugages = ('Python', 'C++', 'Java', 'Perl', 'C', 'Lisp')


x = np.arange(len(prog_lanugages))


performance = 


plt.bar(x, performance)


plt.xticks(x, prog_lanugages)
plt.ylabel('Usage')
plt.xlabel("Programming languages")
plt.title('Programming language usage')
plt.show()</pre>
<p>Output:</p>
</div>
<p> </p>
<p> </p>
<p><img src="//discuss.codewithbishal.com/wp-content/uploads/wpforo/default_attachments/1669577641-Screenshot-2022-11-28-at-10347-AM.png" width="300" height="200" /></p>
 
<p> </p>
<div id="wpfa-248" class="wpforo-attached-file"><a class="wpforo-default-attachment" title="Screenshot-2022-11-28-at-1.03.47-AM.png" href="//discuss.codewithbishal.com/wp-content/uploads/wpforo/default_attachments/1669577641-Screenshot-2022-11-28-at-10347-AM.png" target="_blank" rel="noopener"><i class="fas fa-paperclip"></i> Screenshot-2022-11-28-at-1.03.47-AM.png</a></div>]]></content:encoded>
						                            <category domain="https://discuss.codewithbishal.com/python/">Python</category>                        <dc:creator>CodeWithBishal-admin</dc:creator>
                        <guid isPermaLink="true">https://discuss.codewithbishal.com/python/plot-a-bar-chart-to-depict-the-popularity-of-various-programming-languages/#post-54</guid>
                    </item>
				                    <item>
                        <title>Plot a bar chart to depict the popularity of various programming languages</title>
                        <link>https://discuss.codewithbishal.com/python/plot-a-bar-chart-to-depict-the-popularity-of-various-programming-languages/#post-53</link>
                        <pubDate>Sun, 27 Nov 2022 19:32:47 +0000</pubDate>
                        <description><![CDATA[Plot a bar chart to depict the popularity of various programming languages]]></description>
                        <content:encoded><![CDATA[<p>Plot a bar chart to depict the popularity of various programming languages</p>]]></content:encoded>
						                            <category domain="https://discuss.codewithbishal.com/python/">Python</category>                        <dc:creator>CodeWithBishal-admin</dc:creator>
                        <guid isPermaLink="true">https://discuss.codewithbishal.com/python/plot-a-bar-chart-to-depict-the-popularity-of-various-programming-languages/#post-53</guid>
                    </item>
							        </channel>
        </rss>
		