<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>KiwiCoding &#8211; Learn Coding, Meet the Future</title>
	<atom:link href="https://www.kiwicoding.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.kiwicoding.com</link>
	<description>Learn coding, create a better world</description>
	<lastBuildDate>Wed, 04 Dec 2024 10:04:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.2</generator>

<image>
	<url>https://www.kiwicoding.com/wp-content/uploads/2019/07/k0-100x100.png</url>
	<title>KiwiCoding &#8211; Learn Coding, Meet the Future</title>
	<link>https://www.kiwicoding.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Bloom with Creativity: Draw a Beautiful Rose with Python Turtle</title>
		<link>https://www.kiwicoding.com/bloom-with-creativity-draw-a-beautiful-rose-with-python-turtle/</link>
		
		<dc:creator><![CDATA[kiwi001]]></dc:creator>
		<pubDate>Wed, 14 Feb 2024 05:36:32 +0000</pubDate>
				<category><![CDATA[python]]></category>
		<guid isPermaLink="false">https://www.kiwicoding.com/?p=1600</guid>

					<description><![CDATA[creating a stunning rose using the Python Turtle library; learn python coding online; free python tutorial]]></description>
										<content:encoded><![CDATA[
<p>The allure of a rose, with its delicate petals and vibrant colors, has captivated artists for centuries. Now, even you can capture its essence with the magic of code! In this tutorial, we&#8217;ll guide you through creating a stunning rose using the <strong>Python Turtle library</strong>. Get ready to unleash your inner artist and add a touch of floral elegance to your programming journey.</p>



<h2 class="wp-block-heading"><strong>Prerequisites:</strong></h2>



<ul class="wp-block-list">
<li>Basic understanding of Python programming.</li>



<li>No prior experience with Turtle library is required.</li>
</ul>



<h2 class="wp-block-heading"><strong>Our Tools:</strong></h2>



<ul class="wp-block-list">
<li><strong>Python:</strong> Our trusted programming language.</li>



<li><strong>Turtle Library:</strong> Our virtual artist, ready to paint our rose masterpiece.</li>



<li><a href="https://www.kiwicoding.com/py/">Kiwicoding python playground</a></li>
</ul>



<h2 class="wp-block-heading"><strong>Step 1: Setting the Stage (5 minutes)</strong></h2>



<ol class="wp-block-list">
<li>Open our online <a href="https://www.kiwicoding.com/py/">python coding playground</a></li>



<li><strong>Import Essentials:</strong> Type and run the following lines:</li>
</ol>



<pre class="wp-block-code"><code>import turtle
import random
</code></pre>



<ol class="wp-block-list" start="3">
<li><strong>Create the Canvas:</strong> Define the screen size and background color:</li>
</ol>



<pre class="wp-block-code"><code>screen = turtle.Screen()
screen.setup(width=600, height=400)
screen.bgcolor("lightgreen")  # Lush green background
</code></pre>



<ol class="wp-block-list" start="4">
<li><strong>Meet Your Artist:</strong> Introduce your turtle artist named <code>t</code> with:</li>
</ol>



<pre class="wp-block-code"><code>t = turtle.Turtle()
t.speed(0)  # Fastest drawing speed
t.pensize(1)  # Delicate pen size
</code></pre>



<h2 class="wp-block-heading"><strong>Step 2: Crafting the Stem and Sepals (10 minutes)</strong></h2>



<ol class="wp-block-list">
<li><strong>Draw the Stem:</strong> Move <code>t</code> to the starting point and draw a green line downwards:</li>
</ol>



<pre class="wp-block-code"><code>t.penup()
t.goto(0, -200)
t.pendown()
t.color("green")
t.pensize(3)
t.forward(100)
</code></pre>



<ol class="wp-block-list" start="2">
<li><strong>Draw the Sepals:</strong> Use loops to create three triangular sepals at the base of the stem:</li>
</ol>



<pre class="wp-block-code"><code>angles = &#91;120, 240, 360]
for angle in angles:
    t.right(angle)
    t.forward(20)
    t.left(120)
    t.forward(40)
    t.left(120)
    t.forward(20)
</code></pre>



<h2 class="wp-block-heading"><strong>Step 3: Unveiling the Petals (20 minutes)</strong></h2>



<ol class="wp-block-list">
<li><strong>Define a Petal Function:</strong> Create a function <code>draw_petal(radius, color)</code>:</li>
</ol>



<pre class="wp-block-code"><code>def draw_petal(radius, color):
    t.color(color)
    t.begin_fill()
    t.circle(radius, 90)
    t.left(120)
    t.circle(radius * 0.7, 90)
    t.end_fill()
</code></pre>



<ol class="wp-block-list" start="2">
<li><strong>Explanation:</strong>
<ul class="wp-block-list">
<li>This function uses <code>t.circle()</code> to draw a curved arc, forming the petal shape.</li>



<li>Different angles and radius values create variations in petal size and curvature.</li>
</ul>
</li>



<li><strong>Draw Multiple Petals:</strong> Use nested loops to draw overlapping petals, creating a layered effect:</li>
</ol>



<pre class="wp-block-code"><code>petal_colors = &#91;"pink", "lightpink", "red"]
for i in range(3):
    radius = 40 - i * 5  # Decreasing radius for smaller inner petals
    color = petal_colors&#91;i]
    for _ in range(5):  # Draw 5 petals per layer
        draw_petal(radius, color)
        t.right(72)  # Rotate for the next petal
</code></pre>



<h2 class="wp-block-heading"><strong>Step 4: Adding Finishing Touches (10 minutes)</strong></h2>



<ol class="wp-block-list">
<li><strong>Draw Stamens:</strong> Position <code>t</code> in the center and use short yellow lines:</li>
</ol>



<pre class="wp-block-code"><code>t.penup()
t.goto(0, 0)
t.pendown()
t.color("yellow")
for _ in range(10):
    t.forward(10)
    t.penup()
    t.backward(10)
    t.right(36)
</code></pre>



<ol class="wp-block-list" start="2">
<li><strong>Optional Enhancements:</strong>
<ul class="wp-block-list">
<li>Add leaves to the stem for a more complete look.</li>



<li>Experiment with different petal colors and shapes.</li>



<li>Animate the rose blooming or swaying gently in the breeze.</li>
</ul>
</li>
</ol>



<p><strong>Congratulations!</strong> You&#8217;ve brought a beautiful rose to life using Python Turtle. Remember, coding is like an art form – unleash your creativity, explore new techniques, and keep blooming with your programming skills!</p>



<p><strong>Ready to Explore More?</strong></p>



<p>Head over to kiwicoding.com for a collection</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Paint the Night Sky: Draw Dazzling Stars with Python Turtle (Kiwicoding Tutorial)</title>
		<link>https://www.kiwicoding.com/paint-the-night-sky-draw-dazzling-stars-with-python-turtle-kiwicoding-tutorial/</link>
		
		<dc:creator><![CDATA[kiwi001]]></dc:creator>
		<pubDate>Tue, 13 Feb 2024 10:55:19 +0000</pubDate>
				<category><![CDATA[python]]></category>
		<guid isPermaLink="false">https://www.kiwicoding.com/?p=1596</guid>

					<description><![CDATA[Today, we embark on a journey under the twinkling stars, learning to draw magnificent stars using the Python Turtle library]]></description>
										<content:encoded><![CDATA[
<p>Welcome, aspiring coders, to kiwicoding.com! Today, we embark on a journey under the twinkling stars, learning to <strong>draw magnificent stars using the Python Turtle library</strong>. Buckle up and prepare to illuminate your coding potential!</p>



<h2 class="wp-block-heading"><strong>Prerequisites:</strong></h2>



<ul class="wp-block-list">
<li>Basic understanding of Python programming.</li>



<li>No prior experience with Turtle library is required.</li>
</ul>



<h2 class="wp-block-heading"><strong>Our Tools:</strong></h2>



<ul class="wp-block-list">
<li><strong>Python:</strong> Our trusted programming language.</li>



<li><strong>Turtle Library:</strong> Our virtual brush for painting on the screen.</li>



<li><a href="https://www.kiwicoding.com/py/">Python playground</a></li>
</ul>



<h2 class="wp-block-heading"><strong>Step 1: Setting the Stage (5 minutes)</strong></h2>



<ol class="wp-block-list">
<li>Open our online <a href="https://www.kiwicoding.com/py/">python coding playground</a></li>



<li><strong>Import Essentials:</strong> Type and run the following lines:</li>
</ol>



<pre class="wp-block-code"><code>import turtle
import random</code></pre>



<ol class="wp-block-list" start="3">
<li><strong>Create the Canvas:</strong> Add these lines to define the screen size and background color:</li>
</ol>



<pre class="wp-block-code"><code><code>screen = turtle.Screen()
screen.setup(width=800, height=600)
screen.bgcolor("black")</code></code></pre>



<ol class="wp-block-list" start="4">
<li><strong>Meet Your Artist:</strong> Introduce your turtle artist named <code class="">t</code> with:</li>
</ol>



<pre class="wp-block-code"><code>t = turtle.Turtle()
t.speed(0)  # Fastest drawing speed
t.pensize(1)  # Delicate pen size
</code></pre>



<h2 class="wp-block-heading"><strong>Step 2: Forge Your Star-Drawing Brush (10 minutes)</strong></h2>



<ol class="wp-block-list">
<li><strong>Define the <code>draw_star()</code> Function:</strong> Create a function that takes star position, size, and color as inputs:</li>
</ol>



<pre class="wp-block-code"><code>def draw_star(x, y, size, color):
    t.penup()
    t.goto(x, y)
    t.pendown()
    t.color(color)
    for _ in range(5):
        t.forward(size)
        t.right(144)
</code></pre>



<ol class="wp-block-list" start="2">
<li><strong>Explanation:</strong>
<ul class="wp-block-list">
<li><code class="">t.penup()</code> lifts the pen.</li>



<li><code class="">t.goto(x, y)</code> moves <code class="">t</code> to the star&#8217;s position.</li>



<li><code class="">t.pendown()</code> lowers the pen to start drawing.</li>



<li><code class="">t.color(color)</code> sets the star&#8217;s color.</li>



<li>The loop uses <code class="">t.forward()</code> and <code class="">t.right()</code> to draw the five-pointed star.</li>
</ul>
</li>
</ol>



<h2 class="wp-block-heading"><strong>Step 3: Unleash Your Starry Creation (15 minutes)</strong></h2>



<ol class="wp-block-list">
<li><strong>Define the Number of Stars:</strong> Decide how many stars you want with <code class="">num_stars</code>:</li>
</ol>



<pre class="wp-block-code"><code>num_stars = 200</code></pre>



<ol class="wp-block-list" start="2">
<li><strong>Create the Drawing Loop:</strong> Use a <code class="">for</code> loop to draw each star:</li>
</ol>



<pre class="wp-block-code"><code>for _ in range(num_stars):
    # Randomize star properties
    x = random.randint(-300, 300)
    y = random.randint(-200, 200)
    size = random.randint(5, 15)
    color = random.choice(&#91;"white", "yellow", "orange", "blue"])

    # Draw the star with your function
    draw_star(x, y, size, color)
</code></pre>



<ol class="wp-block-list" start="3">
<li><strong>Explanation:</strong>
<ul class="wp-block-list">
<li>The loop runs <code class="">num_stars</code> times.</li>



<li>Inside the loop, <code class="">random.randint()</code> generates random values for position, size, and color.</li>



<li>Each star is drawn using the <code class="">draw_star()</code> function you created.</li>
</ul>
</li>
</ol>



<h2 class="wp-block-heading"><strong>Step 4: Beyond the Basics (Optional)</strong></h2>



<ul class="wp-block-list">
<li><strong>Animate Stars:</strong> Make them twinkle using color transparency and fading animations.</li>



<li><strong>Craft Different Shapes:</strong> Explore drawing six-pointed stars, crescents, or other shapes with adjusted loops and angles.</li>



<li><strong>Form Constellations:</strong> Arrange stars strategically to create recognizable constellations.</li>



<li><strong>Add Meteor Showers:</strong> Draw streaks of light for a dynamic effect.</li>
</ul>



<p><strong>Congratulations!</strong> You&#8217;ve painted a mesmerizing starry sky using Python Turtle. Remember, this is just the beginning. Share your creations, experiment with new ideas, and keep exploring the wonders of coding!</p>



<p><strong>Ready to Deepen Your Coding Journey?</strong></p>



<p>Explore our extensive Python courses at kiwicoding.com. Our passionate instructors guide you through the wonders of programming, empowering you to create projects that shine brighter than any star!</p>



<p><strong>Additional Resources:</strong></p>



<ul class="wp-block-list">
<li>More Python projects: <a href="https://www.kiwicoding.com/" target="_blank" rel="noreferrer noopener">https://www.kiwicoding.com/</a></li>



<li>Kiwicoding python tutorial: <a href="https://www.kiwicoding.com/embed/?p=2d&amp;link=65cb459fa50c6&amp;o=o">starry night project</a></li>
</ul>



<p>Happy coding!</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Learning Python Animation with Turtle in Kiwicoding&#8217;s Playground!</title>
		<link>https://www.kiwicoding.com/unleash-your-creativity-learning-python-animation-with-turtle-in-kiwicodings-playground/</link>
		
		<dc:creator><![CDATA[kiwi001]]></dc:creator>
		<pubDate>Sun, 11 Feb 2024 07:03:09 +0000</pubDate>
				<category><![CDATA[python]]></category>
		<guid isPermaLink="false">https://www.kiwicoding.com/?p=1584</guid>

					<description><![CDATA[Unleash Your Creativity: Learning Python Animation with Turtle in Kiwicoding's Playground!]]></description>
										<content:encoded><![CDATA[
<p>Calling all young coders and budding animators! Are you ready to bring your imagination to life through the magic of code? In this exciting blog post, we&#8217;ll introduce you to the world of Python animation using the Turtle library, all within the user-friendly Kiwicoding Python Playground.</p>



<h2 class="wp-block-heading"><strong>Why Python and Turtle?</strong></h2>



<p>Python is a powerful and versatile programming language, popular for its beginner-friendly syntax and wide range of applications. The Turtle library makes animation accessible and fun, allowing you to draw shapes, lines, and patterns with simple commands. Together, they provide the perfect platform to unleash your creativity and create stunning animations!</p>



<h2 class="wp-block-heading"><strong>Kiwicoding Python Playground: Your Coding Oasis</strong></h2>



<p>Kiwicoding&#8217;s Python Playground is your one-stop shop for embarking on your animation journey. This online platform offers:</p>



<ul class="wp-block-list">
<li><strong>A user-friendly interface:</strong> No software downloads needed! Start coding directly in your browser with a clean and intuitive interface.</li>



<li><strong>Real-time feedback:</strong> See your code come to life instantly, making learning interactive and engaging.</li>



<li><strong>Step-by-step tutorials:</strong> Follow our guided lessons specifically designed for beginners, taking you from basic commands to advanced animation techniques.</li>



<li><strong>Challenges and puzzles:</strong> Test your skills and have fun with exciting challenges that put your newfound animation knowledge to the test.</li>
</ul>



<h2 class="wp-block-heading"><strong>Let&#8217;s Get Animated!</strong></h2>



<p>Now, let&#8217;s delve into the exciting world of Turtle animation with a simple example:</p>



<iframe src="https://www.kiwicoding.com/embed/?p=2d&#038;link=65c869e94d0fb" width="100%" height="500" frameborder="0" marginwidth="0" marginheight="30"></iframe>



<p>This code will create a red square followed by a blue triangle on your screen. By experimenting with different colors, shapes, and movement commands, you can create incredible animations!</p>



<h2 class="wp-block-heading"><strong>Ready to Explore More?</strong></h2>



<p>Kiwicoding&#8217;s Python Playground offers a treasure trove of animation tutorials, from drawing bouncing balls and colorful patterns to making your own games. Dive into the lessons, unleash your creativity, and discover the endless possibilities of Python animation!</p>



<p><strong>Remember:</strong></p>



<ul class="wp-block-list">
<li>Practice makes perfect! Experiment with different code snippets and explore the Turtle library&#8217;s capabilities.</li>



<li>Don&#8217;t be afraid to make mistakes. That&#8217;s how we learn and grow!</li>



<li>Share your creations with the Kiwicoding community and inspire others.</li>
</ul>



<p>With dedication and a dash of imagination, you can become a master of Python animation in no time! So, what are you waiting for? Start your animation adventure today with Kiwicoding&#8217;s Python Playground!</p>



<p><strong>Bonus Tip:</strong> Check out our website for more resources, including coding contests and online communities, to fuel your coding journey!</p>



<p>We hope this blog post has sparked your interest in Python animation. Start exploring, create amazing things, and have fun coding!</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Learn Python Coding &#8211; Cool Pattern</title>
		<link>https://www.kiwicoding.com/python-coding-cool-pattern/</link>
		
		<dc:creator><![CDATA[kiwi001]]></dc:creator>
		<pubDate>Fri, 22 Oct 2021 08:09:56 +0000</pubDate>
				<category><![CDATA[python]]></category>
		<guid isPermaLink="false">https://www.kiwicoding.com/?p=1145</guid>

					<description><![CDATA[What can you do with python coding? You can make beautiful and cool patterns using python codes. Now look at the animated pattern, we create it with only 18 lines of python codes. A group of children from New Zealand (aged 8-14) made it during an online event hosted by kiwicoding club recently. Check out more of their coding projects [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>What can you do with python coding? You can make beautiful and cool patterns using python codes.</p>



<p>Now look at the animated pattern, we create it with only 18 lines of python codes. A group of children from New Zealand (aged 8-14) made it during an online event hosted by <a href="https://www.kiwicoding.com" target="_blank" rel="noreferrer noopener">kiwicoding club</a> recently. Check out more of their coding projects from our live coding demos <a href="https://kiwicoding.com/c-demo" target="_blank" rel="noreferrer noopener">here</a>. </p>



<p>If you want to learn python coding online, join kiwicoding club, <a href="https://www.kiwicoding.com/register">sign up</a> and become a kiwicoding club member today.  You will learn and make lots of cool coding projects with a lot of cool people around the world, they are from top companies around the world.</p>



<iframe src="https://www.kiwicoding.com/embed?p=2d&amp;link=61726f2712e28&amp;o=o" width="100%" height="500" frameborder="0" marginwidth="0" marginheight="30"></iframe>



<p></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Python Coding 101</title>
		<link>https://www.kiwicoding.com/python-coding-101/</link>
		
		<dc:creator><![CDATA[kiwi001]]></dc:creator>
		<pubDate>Fri, 22 Oct 2021 07:25:12 +0000</pubDate>
				<category><![CDATA[python]]></category>
		<guid isPermaLink="false">https://www.kiwicoding.com/?p=1138</guid>

					<description><![CDATA[Author: kiwi001 from kiwicoding This tutorial is for python beginner. 1. Print text on screen Click the Run button (triangle) below and see what will be printed on screen. ✅ Try to change the text inside the quotation marks and run again. 2. Do calculations Click the Run button (triangle) below and see what will be printed on screen. ✅ [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p><sub><em>Author: <a href="https://kiwicoding.com/contact">kiwi001</a> from <a href="https://www.kiwicoding.com">kiwicoding</a></em></sub></p>



<p>This tutorial is for python beginner.</p>



<h2 class="wp-block-heading">1. Print text on screen</h2>



<p>Click the Run button (triangle) below and see what will be printed on screen. </p>



<p>✅ Try to change the <strong>text </strong>inside the quotation marks and run again.</p>



<iframe src="https://www.kiwicoding.com/embed?p=2d&amp;link=6172453c390ca" width="100%" height="500" frameborder="0" marginwidth="0" marginheight="30"></iframe>



<h2 class="wp-block-heading">2. Do calculations</h2>



<p>Click the Run button (triangle) below and see what will be printed on screen. </p>



<p>✅ Try to change the <strong>numbers</strong> inside the () and run again.</p>



<iframe src="https://www.kiwicoding.com/embed?p=2d&amp;link=617258e845e68" width="100%" height="500" frameborder="0" marginwidth="0" marginheight="30"></iframe>



<h2 class="wp-block-heading">3. Variables</h2>



<p>Click the Run button (triangle) below and see what will be printed on screen. </p>



<p>✅ Try to change the <strong>text </strong>or <strong>numbers</strong> on the right side of  the = sign and run again.</p>



<iframe src="https://www.kiwicoding.com/embed?p=2d&amp;link=61725a75d311a" width="100%" height="500" frameborder="0" marginwidth="0" marginheight="30"></iframe>



<h2 class="wp-block-heading">4. Repeat</h2>



<p>Click the Run button (triangle) below and see what will be printed on screen. </p>



<p>✅ Try to change the <strong>number</strong> in () and run again.</p>



<iframe src="https://www.kiwicoding.com/embed?p=2d&amp;link=61725bdb37e36" width="100%" height="500" frameborder="0" marginwidth="0" marginheight="30"></iframe>



<h2 class="wp-block-heading">5. condition</h2>



<p>Click the Run button (triangle) below and see what will be printed on screen. </p>



<p>✅ Try to change the <strong>number</strong> on the line to 80 and run again.</p>



<iframe src="https://www.kiwicoding.com/embed?p=2d&amp;link=61725cad35412" width="100%" height="500" frameborder="0" marginwidth="0" marginheight="30"></iframe>



<h2 class="wp-block-heading">6. list</h2>



<p>Click the Run button (triangle) below and see what will be printed on screen. </p>



<p>✅ Try to change the <strong>color names in quotation marks </strong>and run again.</p>



<p>✅ Try to add or remove some colors to/from the list<strong> </strong>and run again.</p>



<iframe src="https://www.kiwicoding.com/embed?p=2d&amp;link=61725e349c58e" width="100%" height="500" frameborder="0" marginwidth="0" marginheight="30"></iframe>



<h2 class="wp-block-heading">7. dictionary</h2>



<p>Click the Run button (triangle) below and see what will be printed on screen. </p>



<p>✅ Try to change the <strong>name </strong>&#8216;alex&#8217; on line 2 to your own name and run again.</p>



<iframe src="https://www.kiwicoding.com/embed?p=2d&amp;link=61725ef5c6f9b" width="100%" height="500" frameborder="0" marginwidth="0" marginheight="30"></iframe>



<h2 class="wp-block-heading">8. function</h2>



<p>Click the Run button (triangle) below and see what will be printed on screen. </p>



<p>✅ Try to change the <strong>number</strong>s and run again.</p>



<p>✅ Try to change <strong>a+b</strong> to <strong>a-b </strong>and run again.</p>



<iframe src="https://www.kiwicoding.com/embed?p=2d&amp;link=6172633146a99" width="100%" height="500" frameborder="0" marginwidth="0" marginheight="30"></iframe>



<h2 class="wp-block-heading">9. library</h2>



<p>Click the Run button (triangle) below and see what will be printed on screen. </p>



<p>✅ Try to change the <strong>numbers </strong>in () and run again.</p>



<iframe src="https://www.kiwicoding.com/embed?p=2d&amp;link=6172641a53519" width="100%" height="500" frameborder="0" marginwidth="0" marginheight="30"></iframe>



<p>Check our coding classes from <a href="https://www.kiwicoding.com/classes-introduction/">here</a> and coding demos <a href="https://www.kiwicoding.com/c-demo">here</a>.</p>



<p><a href="https://www.kiwicoding.com/register/">Join </a>our coding club and learn coding with millions of people around the world.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>KIWICODING PLAYGROUND</title>
		<link>https://www.kiwicoding.com/kiwicoding-playground/</link>
		
		<dc:creator><![CDATA[kiwi001]]></dc:creator>
		<pubDate>Sun, 11 Oct 2020 05:48:19 +0000</pubDate>
				<category><![CDATA[python]]></category>
		<guid isPermaLink="false">https://www.kiwicoding.com/?p=816</guid>

					<description><![CDATA[Now you can create and run your codes in kiwicoding playground, without the needs to install any software. You can create python codes, python 3D projects, HTML &#38; JavaScript, Music in the playground. Just click Run and immediately you&#8217;ll get the results, no more complicated process of downloading, installation and long learning curve of multiple software on your device. Run [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>Now you can create and run your codes in <a href="https://www.kiwicoding.com/c/py" target="_blank" rel="noreferrer noopener">kiwicoding playground</a>, without the needs to install any software.</p>



<figure class="wp-block-image size-large"><img fetchpriority="high" decoding="async" width="1024" height="408" src="https://www.kiwicoding.com/wp-content/uploads/2020/10/Computers2-1024x408.png" alt="" class="wp-image-812" srcset="https://www.kiwicoding.com/wp-content/uploads/2020/10/Computers2-1024x408.png 1024w, https://www.kiwicoding.com/wp-content/uploads/2020/10/Computers2-300x120.png 300w, https://www.kiwicoding.com/wp-content/uploads/2020/10/Computers2-768x306.png 768w, https://www.kiwicoding.com/wp-content/uploads/2020/10/Computers2-1536x612.png 1536w, https://www.kiwicoding.com/wp-content/uploads/2020/10/Computers2-600x239.png 600w, https://www.kiwicoding.com/wp-content/uploads/2020/10/Computers2.png 1606w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>You can create <a href="https://www.kiwicoding.com/c/py" target="_blank" rel="noreferrer noopener">python codes</a>, <a href="https://www.kiwicoding.com/c/3d/" target="_blank" rel="noreferrer noopener">python 3D projects</a>, <a href="https://www.kiwicoding.com/c-html/" target="_blank" rel="noreferrer noopener">HTML &amp; JavaScript</a>, <a href="https://www.kiwicoding.com/c-music/" target="_blank" rel="noreferrer noopener">Music</a> in the playground. Just click Run and immediately you&#8217;ll get the results, no more complicated process of downloading, installation and long learning curve of multiple software on your device.</p>



<figure class="wp-block-image size-large"><img decoding="async" width="1024" height="410" src="https://www.kiwicoding.com/wp-content/uploads/2020/10/State-of-Web-Browsers-in-2019-768x421-1-1-1024x410.jpg" alt="" class="wp-image-820" srcset="https://www.kiwicoding.com/wp-content/uploads/2020/10/State-of-Web-Browsers-in-2019-768x421-1-1-1024x410.jpg 1024w, https://www.kiwicoding.com/wp-content/uploads/2020/10/State-of-Web-Browsers-in-2019-768x421-1-1-300x120.jpg 300w, https://www.kiwicoding.com/wp-content/uploads/2020/10/State-of-Web-Browsers-in-2019-768x421-1-1-768x307.jpg 768w, https://www.kiwicoding.com/wp-content/uploads/2020/10/State-of-Web-Browsers-in-2019-768x421-1-1-600x240.jpg 600w, https://www.kiwicoding.com/wp-content/uploads/2020/10/State-of-Web-Browsers-in-2019-768x421-1-1.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>Run codes in the browser, share it with your friends so that they can see your coding projects on their phones, iPads.</p>



<p>Now let&#8217;s check out the demo. Click the Play button, you should see the 3D earth! This program is created by our <a href="https://www.kiwicoding.com/c/3d/" target="_blank" rel="noreferrer noopener">python 3D playground</a>.</p>



<p>Are you on phone? you can spin it with your fingers.</p>



<p>On laptop or desktop? you can spin it with the right key of your mouse.</p>



<iframe src="https://www.kiwicoding.com/embed?p=3d&amp;link=5f82a385e7963" width="100%" height="500" frameborder="0" marginwidth="0" marginheight="30"></iframe>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>PYTHON CODING CAMP</title>
		<link>https://www.kiwicoding.com/python-coding-camp/</link>
		
		<dc:creator><![CDATA[kiwi001]]></dc:creator>
		<pubDate>Fri, 21 Aug 2020 11:11:07 +0000</pubDate>
				<category><![CDATA[python]]></category>
		<guid isPermaLink="false">https://www.kiwicoding.com/?p=626</guid>

					<description><![CDATA[Python Coding Camp for creative kids. ZOOM CLASS, 1 HOUR/SESSION, 2 SESSIONS/WEEK LEARN PYTHON CODING AND MEET MORE FRIENDS! WELCOME TO THE WORLD OF PYTHON RACING ANIMATION CREATE COOL PATTERNS BUILD 3D SOLAR SYSTEM MODEL DESIGN AND DEVELOP A GAME INTERACTIVE FIREWORKS &#160;SEATS LIMITED! BOOK NOW]]></description>
										<content:encoded><![CDATA[		<div data-elementor-type="wp-post" data-elementor-id="626" class="elementor elementor-626">
						<section class="elementor-section elementor-top-section elementor-element elementor-element-80da2a6 elementor-section-height-min-height elementor-section-content-middle elementor-reverse-mobile elementor-section-boxed elementor-section-height-default elementor-section-items-middle" data-id="80da2a6" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
						<div class="elementor-container elementor-column-gap-no">
					<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-1ce45f6f" data-id="1ce45f6f" data-element_type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-624ba847 elementor-widget elementor-widget-heading" data-id="624ba847" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
			<h2 class="elementor-heading-title elementor-size-default">Python Coding Camp for creative kids.</h2>		</div>
				</div>
				<div class="elementor-element elementor-element-3576ae20 elementor-widget elementor-widget-text-editor" data-id="3576ae20" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
							<p><strong>ZOOM CLASS, 1 HOUR/SESSION, 2 SESSIONS/WEEK</strong></p><p><strong>LEARN PYTHON CODING AND MEET MORE FRIENDS!</strong></p><ul><li>WELCOME TO THE WORLD OF PYTHON</li><li>RACING ANIMATION</li><li>CREATE COOL PATTERNS</li><li>BUILD 3D SOLAR SYSTEM MODEL</li><li>DESIGN AND DEVELOP A GAME</li><li>INTERACTIVE FIREWORKS</li></ul><div> </div><div>SEATS LIMITED! </div>						</div>
				</div>
				<div class="elementor-element elementor-element-5c0f8687 elementor-align-left elementor-mobile-align-center elementor-widget elementor-widget-button" data-id="5c0f8687" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
							<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-grow" href="https://www.kiwicoding.com/contact/">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">BOOK NOW</span>
					</span>
					</a>
				</div>
						</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-88944e0" data-id="88944e0" data-element_type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-f9dc4fb elementor-widget elementor-widget-image" data-id="f9dc4fb" data-element_type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
													<img decoding="async" width="382" height="544" src="https://www.kiwicoding.com/wp-content/uploads/2020/01/image-6.png" class="attachment-full size-full wp-image-163" alt="" srcset="https://www.kiwicoding.com/wp-content/uploads/2020/01/image-6.png 382w, https://www.kiwicoding.com/wp-content/uploads/2020/01/image-6-211x300.png 211w" sizes="(max-width: 382px) 100vw, 382px" />													</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				</div>
		]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>I CAN READ YOUR MIND</title>
		<link>https://www.kiwicoding.com/html-and-javascript/</link>
		
		<dc:creator><![CDATA[kiwi001]]></dc:creator>
		<pubDate>Fri, 24 Jul 2020 12:19:13 +0000</pubDate>
				<category><![CDATA[python]]></category>
		<guid isPermaLink="false">http://www.kiwicoding.com/?p=319</guid>

					<description><![CDATA[HTML and JavaScript can actually read your mind. Now let&#8217;s start the journey of mind reading. I can read your mind. WELCOME! START YES NO]]></description>
										<content:encoded><![CDATA[
<p>HTML and JavaScript can actually read your mind. </p>



<p>Now let&#8217;s start the journey of mind reading.</p>



<html>

<head>
  <style>
    img {
      width:50%;
      height:50%;
    }
    #result {
      background-color: #ffc300;
      color: white;
      width: 200px;
      height:100px;
      text-align: center;
      font-size: 60px;
      padding:50px;
      display:none;
    }

    button {
      height: auto;
      width: auto;
      background-color: black;
      color: white;
      font-size: 200%;
      padding:20px;
    }

    #start {
      display: block;
    }

    #yes {
      display: none;
    }

    #no {
      display: none;
    }
  </style>
  <script>
    var i = 1;
    var number = 0;
    var keys = [32, 16, 8, 4, 2, 1];
    function toggle() {
      var buttons = ["yes", "no", "start"];
      for (a = 0; a <= 2; a++) {
        var b = document.getElementById(buttons[a]);
        if (b.style.display === "block") {
          b.style.display = "none";
        } else {
          b.style.display = "block";
        }
      }
    }
    function clickYes() {
      number += keys[i - 1];
      i++;
      if (i <= 6) {
        document.getElementById("image").src = "https://www.kiwicoding.com/wp-content/uploads/2020/07/"+i+".jpg";
      }
      else {
      document.getElementById("result").style.display = "block";
        document.getElementById("image").style.display = "none";
        document.getElementById("result").innerHTML = number;
        document.getElementById("start").style.display = "block";
        document.getElementById("yes").style.display = "none";
        document.getElementById("no").style.display = "none";
document.getElementById("t").innerHTML = "";
      }
    }
    function clickNo() {
      i++;
      if (i <= 6) {
        document.getElementById("image").src = "https://www.kiwicoding.com/wp-content/uploads/2020/07/"+i+".jpg";
      }
      else {
      document.getElementById("result").style.display = "block";
        document.getElementById("image").style.display = "none";
        document.getElementById("result").innerHTML = number;
        document.getElementById("start").style.display = "block";
        document.getElementById("yes").style.display = "none";
        document.getElementById("no").style.display = "none";
document.getElementById("t").innerHTML = "";
      }
    }
    function clickStart() {
      i = 1;
      number = 0;
      document.getElementById("result").style.display = "none";
      document.getElementById("start").style.display = "none";
      document.getElementById("yes").style.display = "inline";
      document.getElementById("no").style.display = "inline";
      document.getElementById("image").src = "https://www.kiwicoding.com/wp-content/uploads/2020/07/1.jpg";
      document.getElementById("t").innerHTML = "Do you see your number in this picture?";
      document.getElementById("image").style.display = "block";
      document.getElementById("result").innerHTML = "";
      document.getElementById("start").innerHTML = "START AGAIN?";
    }
  </script>
  <title>
    I can read your mind.
  </title>
</head>

<body>
  <h2 id="t">WELCOME!</h2>
  <img decoding="async" id="image" src="https://www.kiwicoding.com/wp-content/uploads/2020/07/0.jpg">
  <div id="result"></div>
  <button id="start" onclick="clickStart()">START</button>
  <button id="yes" onclick="clickYes()">YES</button>
  <button id="no" onclick="clickNo()">NO</button>
</body>

</html>



<p></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>PYTHON CODING PLAYGROUND</title>
		<link>https://www.kiwicoding.com/py/</link>
		
		<dc:creator><![CDATA[kiwi001]]></dc:creator>
		<pubDate>Fri, 24 Jul 2020 00:16:59 +0000</pubDate>
				<category><![CDATA[python]]></category>
		<guid isPermaLink="false">http://www.kiwicoding.com/?p=317</guid>

					<description><![CDATA[Do you know that you can create and run python program in your browser? Thousands of children learn python coding at kiwicoding in just few hours. You can also do it!]]></description>
										<content:encoded><![CDATA[
<p>Do you know that you can create and run python program in your browser? Thousands of children learn python coding at kiwicoding in just few hours. You can also do it!</p>



<iframe id="code" src="https://www.kiwicoding.com/embed/py2d/" width="100%" height="500" frameborder="0" marginwidth="0" marginheight="30"></iframe>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>COOL 3D CODING</title>
		<link>https://www.kiwicoding.com/3d/</link>
		
		<dc:creator><![CDATA[kiwi001]]></dc:creator>
		<pubDate>Wed, 17 Jul 2019 07:42:57 +0000</pubDate>
				<category><![CDATA[python]]></category>
		<guid isPermaLink="false">http://www.kiwicoding.com/?p=1</guid>

					<description><![CDATA[Let&#8217;s create galaxies, solar system and a whole 3D world. With python, this can be done easily. Try it now!]]></description>
										<content:encoded><![CDATA[
<p>Let&#8217;s create galaxies, solar system and a whole 3D world. With python, this can be done easily. Try it now!</p><meta name="description" content="python;coding;kids coding;scratch;minecraft;best coding">



<p></p>



<iframe id="code" src="https://www.kiwicoding.com/embed/py3d/" width="100%" height="500" frameborder="0" marginwidth="0" marginheight="30"></iframe>



<p></p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/

Object Caching 3/495 objects using Disk
Page Caching using Disk: Enhanced 
Lazy Loading (feed)
Minified using Disk
Database Caching 1/139 queries in 0.104 seconds using Disk (Request-wide modification query)

Served from: www.kiwicoding.com @ 2026-04-15 13:36:34 by W3 Total Cache
-->