<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>python &amp;mdash;   christova  </title>
    <link>https://christova.writeas.com/tag:python</link>
    <description>&lt;b&gt;&lt;h3&gt;Tech Articles&lt;/h3&gt;&lt;/b&gt;&lt;br/&gt;&lt;b&gt;Collated from various sources. Full copyright remains with original authors.&lt;/b&gt;</description>
    <pubDate>Fri, 08 May 2026 19:46:27 +0000</pubDate>
    <item>
      <title>Kenny Yip: Excellent Programmer</title>
      <link>https://christova.writeas.com/kenny-yip-excellent-programmer?pk_campaign=rss-feed</link>
      <description>&lt;![CDATA[I recently came across a developer by the name Kenny Yip who generously provides tutorials focused on Java, Python, C++ and more. Two main links of his to please check out:&#xA;&#xA;https://www.youtube.com/@KennyYipCoding&#xA;&#xA;https://www.kennyyipcoding.com/&#xA;&#xA;Kenny’s content is great; he is popular and does an excellent job of educating, encouraging and embracing those on the path of learning software development. Regardless of which stage you’re at on the journey of coding and creating IT solutions, Kenny has a spirit which can lift you up a step from either beginner-to-intermediate, or give you an enjoyable refreshing reminder of your hard-earned advanced—technical-chops.&#xA;&#xA;The world is your Yippee-ki-yay, mothercrusher!&#xA;&#xA; #kenny-yip #kennyyipcoding #java #python #c++&#xA;&#xA;]]&gt;</description>
      <content:encoded><![CDATA[<p>I recently came across a developer by the name <strong>Kenny Yip</strong> who generously provides tutorials focused on <strong>Java</strong>, <strong>Python</strong>, <strong>C++</strong> and more. Two main links of his to please check out:</p>

<p><a href="https://www.youtube.com/@KennyYipCoding">https://www.youtube.com/@KennyYipCoding</a></p>

<p><a href="https://www.kennyyipcoding.com/">https://www.kennyyipcoding.com/</a></p>

<p>Kenny’s content is great; he is popular and does an excellent job of educating, encouraging and embracing those on the path of learning software development. Regardless of which stage you’re at on the journey of coding and creating IT solutions, Kenny has a spirit which can lift you up a step from either <em><strong>beginner-to-intermediate</strong></em>, or give you an enjoyable refreshing reminder of your hard-earned <em><strong>advanced—technical-chops</strong></em>.</p>

<p>The world is your <strong>Yippee-ki-yay, mothercrusher!</strong></p>

<p> <a href="https://christova.writeas.com/tag:kenny" class="hashtag"><span>#</span><span class="p-category">kenny</span></a>-yip <a href="https://christova.writeas.com/tag:kennyyipcoding" class="hashtag"><span>#</span><span class="p-category">kennyyipcoding</span></a> <a href="https://christova.writeas.com/tag:java" class="hashtag"><span>#</span><span class="p-category">java</span></a> <a href="https://christova.writeas.com/tag:python" class="hashtag"><span>#</span><span class="p-category">python</span></a> <a href="https://christova.writeas.com/tag:c" class="hashtag"><span>#</span><span class="p-category">c</span></a>++</p>

<p><img src="https://i.snap.as/wQVFHSXQ.jpg" alt=""/></p>
]]></content:encoded>
      <guid>https://christova.writeas.com/kenny-yip-excellent-programmer</guid>
      <pubDate>Tue, 21 Apr 2026 22:28:31 +0000</pubDate>
    </item>
    <item>
      <title>Python List Methods</title>
      <link>https://christova.writeas.com/python-list-methods-x082?pk_campaign=rss-feed</link>
      <description>&lt;![CDATA[&#xA;&#xA;#python #lists #listMethods&#xA;&#xA;Lists are everywhere—data, APIs, ML, automation…&#xA;And mastering their methods makes your code 10x better.&#xA;&#xA;Here are the essentials:&#xA;&#xA;🔹 append()&#xA;→ Add item to the end&#xA;&#xA;🔹 clear()&#xA;→ Remove all items&#xA;&#xA;🔹 copy()&#xA;→ Create a shallow copy&#xA;&#xA;🔹 count(x)&#xA;→ Count occurrences of a value&#xA;&#xA;🔹 index(x)&#xA;→ Find position of a value&#xA;&#xA;🔹 insert(i, x)&#xA;→ Add item at a specific position&#xA;&#xA;🔹 pop(i)&#xA;→ Remove &amp; return item by index&#xA;&#xA;🔹 remove(x)&#xA;→ Remove first matching value&#xA;&#xA;🔹 reverse()&#xA;→ Reverse the list&#xA;&#xA;💡 Pro insight:&#xA;Lists are not just data structures…&#xA;They’re the foundation of how Python handles collections.]]&gt;</description>
      <content:encoded><![CDATA[<p><img src="https://i.snap.as/xXgvlTEI.jpg" alt=""/></p>

<p><a href="https://christova.writeas.com/tag:python" class="hashtag"><span>#</span><span class="p-category">python</span></a> <a href="https://christova.writeas.com/tag:lists" class="hashtag"><span>#</span><span class="p-category">lists</span></a> <a href="https://christova.writeas.com/tag:listMethods" class="hashtag"><span>#</span><span class="p-category">listMethods</span></a></p>

<p>Lists are everywhere—data, APIs, ML, automation…
And mastering their methods makes your code 10x better.</p>

<p>Here are the essentials:</p>

<p>🔹 <strong>append()</strong>
→ Add item to the end</p>

<p>🔹 <strong>clear()</strong>
→ Remove all items</p>

<p>🔹 <strong>copy()</strong>
→ Create a shallow copy</p>

<p>🔹 <strong>count(x)</strong>
→ Count occurrences of a value</p>

<p>🔹 <strong>index(x)</strong>
→ Find position of a value</p>

<p>🔹 <strong>insert(i, x)</strong>
→ Add item at a specific position</p>

<p>🔹 <strong>pop(i)</strong>
→ Remove &amp; return item by index</p>

<p>🔹 <strong>remove(x)</strong>
→ Remove first matching value</p>

<p>🔹 <strong>reverse()</strong>
→ Reverse the list</p>

<p>💡 <strong>Pro insight:</strong>
Lists are not just data structures…
They’re the foundation of how Python handles collections.</p>
]]></content:encoded>
      <guid>https://christova.writeas.com/python-list-methods-x082</guid>
      <pubDate>Tue, 21 Apr 2026 13:13:40 +0000</pubDate>
    </item>
    <item>
      <title>Garbage Collection</title>
      <link>https://christova.writeas.com/garbage-collection?pk_campaign=rss-feed</link>
      <description>&lt;![CDATA[&#xA;&#xA;#java #garbagecollection #python #go #memory]]&gt;</description>
      <content:encoded><![CDATA[<p><img src="https://i.snap.as/qSKF81A5.jpg" alt=""/></p>

<p><a href="https://christova.writeas.com/tag:java" class="hashtag"><span>#</span><span class="p-category">java</span></a> <a href="https://christova.writeas.com/tag:garbagecollection" class="hashtag"><span>#</span><span class="p-category">garbagecollection</span></a> <a href="https://christova.writeas.com/tag:python" class="hashtag"><span>#</span><span class="p-category">python</span></a> <a href="https://christova.writeas.com/tag:go" class="hashtag"><span>#</span><span class="p-category">go</span></a> <a href="https://christova.writeas.com/tag:memory" class="hashtag"><span>#</span><span class="p-category">memory</span></a></p>
]]></content:encoded>
      <guid>https://christova.writeas.com/garbage-collection</guid>
      <pubDate>Fri, 27 Mar 2026 18:40:18 +0000</pubDate>
    </item>
    <item>
      <title>Python List Methods</title>
      <link>https://christova.writeas.com/python-list-methods?pk_campaign=rss-feed</link>
      <description>&lt;![CDATA[&#xA;&#xA;#python #lists #listmethods]]&gt;</description>
      <content:encoded><![CDATA[<p><img src="https://i.snap.as/d8BmiEAl.jpg" alt=""/></p>

<p><a href="https://christova.writeas.com/tag:python" class="hashtag"><span>#</span><span class="p-category">python</span></a> <a href="https://christova.writeas.com/tag:lists" class="hashtag"><span>#</span><span class="p-category">lists</span></a> <a href="https://christova.writeas.com/tag:listmethods" class="hashtag"><span>#</span><span class="p-category">listmethods</span></a></p>
]]></content:encoded>
      <guid>https://christova.writeas.com/python-list-methods</guid>
      <pubDate>Fri, 27 Mar 2026 17:17:35 +0000</pubDate>
    </item>
    <item>
      <title>Java vs Python</title>
      <link>https://christova.writeas.com/java-vs-python?pk_campaign=rss-feed</link>
      <description>&lt;![CDATA[&#xA;&#xA;#java #python]]&gt;</description>
      <content:encoded><![CDATA[<p><img src="https://i.snap.as/dwh5L5Rk.jpg" alt=""/></p>

<p><a href="https://christova.writeas.com/tag:java" class="hashtag"><span>#</span><span class="p-category">java</span></a> <a href="https://christova.writeas.com/tag:python" class="hashtag"><span>#</span><span class="p-category">python</span></a></p>
]]></content:encoded>
      <guid>https://christova.writeas.com/java-vs-python</guid>
      <pubDate>Fri, 28 Feb 2025 04:02:39 +0000</pubDate>
    </item>
    <item>
      <title>How Do C++, Java and Python Work?</title>
      <link>https://christova.writeas.com/how-do-c-java-and-python-work?pk_campaign=rss-feed</link>
      <description>&lt;![CDATA[&#xA;&#xA;#c++ #java #python]]&gt;</description>
      <content:encoded><![CDATA[<p><img src="https://i.snap.as/E3IC6reH.jpg" alt=""/></p>

<p><a href="https://christova.writeas.com/tag:c" class="hashtag"><span>#</span><span class="p-category">c</span></a>++ <a href="https://christova.writeas.com/tag:java" class="hashtag"><span>#</span><span class="p-category">java</span></a> <a href="https://christova.writeas.com/tag:python" class="hashtag"><span>#</span><span class="p-category">python</span></a></p>
]]></content:encoded>
      <guid>https://christova.writeas.com/how-do-c-java-and-python-work</guid>
      <pubDate>Tue, 10 Dec 2024 19:13:25 +0000</pubDate>
    </item>
    <item>
      <title>Python vs Java</title>
      <link>https://christova.writeas.com/python-vs-java?pk_campaign=rss-feed</link>
      <description>&lt;![CDATA[&#xA;&#xA;#python #java]]&gt;</description>
      <content:encoded><![CDATA[<p><img src="https://i.snap.as/u15a96Rs.jpg" alt=""/></p>

<p><a href="https://christova.writeas.com/tag:python" class="hashtag"><span>#</span><span class="p-category">python</span></a> <a href="https://christova.writeas.com/tag:java" class="hashtag"><span>#</span><span class="p-category">java</span></a></p>
]]></content:encoded>
      <guid>https://christova.writeas.com/python-vs-java</guid>
      <pubDate>Tue, 08 Oct 2024 14:53:33 +0000</pubDate>
    </item>
  </channel>
</rss>