Python Lists and Arrays

Main.PythonArrays History

Show minor edits - Show changes to output

June 21, 2020, at 04:13 AM by 136.36.211.159 -
Changed lines 10-28 from:
 
----

(:html:)
 <div id="disqus_thread"></div>
    <script type="text/javascript">
        /* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
        var disqus_shortname = 'apmonitor'; // required: replace example with your forum shortname

        /* * * DON'T EDIT BELOW THIS LINE * * */
        (function() {
            var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
            dsq.src = 'https://' + disqus_shortname + '.disqus.com/embed.js';
            (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
        })();
    </script>
    <noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
    <a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
(:htmlend:)
to:
 
Added lines 1-28:
(:title Python Lists and Arrays:)
(:keywords list, array, matrix, vector, Python, iPython, notebook, university, learn, teach:)
(:description Introduction to lists, arrays, matrices, and vectors in Python:)

A list is a collection of data objects in Python. Lists are a compact way to store and manipulate large data sets. They can be used in loops to analyze each of the entries in the list or create a database. Matrices and vectors are arrays of numbers that may be processed with standard Python commands or created and manipulated with the NumPy package.

(:html:)
<iframe width="560" height="315" src="https://www.youtube.com/embed/mOZ0UCeuRX4" frameborder="0" allowfullscreen></iframe>
(:htmlend:)
 
----

(:html:)
 <div id="disqus_thread"></div>
    <script type="text/javascript">
        /* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
        var disqus_shortname = 'apmonitor'; // required: replace example with your forum shortname

        /* * * DON'T EDIT BELOW THIS LINE * * */
        (function() {
            var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
            dsq.src = 'https://' + disqus_shortname + '.disqus.com/embed.js';
            (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
        })();
    </script>
    <noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
    <a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
(:htmlend:)