<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>KidzTalk - Recent questions tagged #coding</title>
<link>https://www.kidzsearch.com/questions/tag/%23coding</link>
<description>Powered by Question2Answer</description>
<item>
<title>hello</title>
<link>https://www.kidzsearch.com/questions/903286/hello</link>
<description>sorry that I'm not posting much lately, I'll try to post more :)</description>
<category>Other</category>
<guid isPermaLink="true">https://www.kidzsearch.com/questions/903286/hello</guid>
<pubDate>Fri, 13 Mar 2026 19:33:15 +0000</pubDate>
</item>
<item>
<title>Hello someone here mind explainin wut is a class in python plss i realy really want to know but idk?</title>
<link>https://www.kidzsearch.com/questions/903180/hello-someone-here-mind-explainin-wut-is-a-class-in-python-plss-i-realy-really-want-to-know-but-idk</link>
<description>Ok i am a 7th grader intrested in coding and i code a quite bit of python when i feel like it but idk wut on EARTH are classes so someone who is alos like in 7-9 grade pls explain wut are classes and how do u use em? thanks :P</description>
<category>Technology</category>
<guid isPermaLink="true">https://www.kidzsearch.com/questions/903180/hello-someone-here-mind-explainin-wut-is-a-class-in-python-plss-i-realy-really-want-to-know-but-idk</guid>
<pubDate>Fri, 13 Mar 2026 13:22:32 +0000</pubDate>
</item>
<item>
<title>Are there any fellow scratchers on here?</title>
<link>https://www.kidzsearch.com/questions/874956/are-there-any-fellow-scratchers-on-here</link>
<description>WHY IS THERE NO CODING CATEGORY&lt;br /&gt;
&lt;br /&gt;
Scratchers, as in, anybody with a Scratch account.</description>
<category>Education</category>
<guid isPermaLink="true">https://www.kidzsearch.com/questions/874956/are-there-any-fellow-scratchers-on-here</guid>
<pubDate>Tue, 27 Jan 2026 21:28:58 +0000</pubDate>
</item>
<item>
<title>What starts with an F, ends in an F but doesn’t have an F in it</title>
<link>https://www.kidzsearch.com/questions/513400/what-starts-with-an-f-ends-in-an-f-but-doesnt-have-an-f-in-it</link>
<description>

&lt;p&gt;how my parents see my grades if i dont get all As&amp;nbsp;&lt;img title=&quot;skull&quot; alt=&quot;skull&quot; src=&quot;https://www.kidzsearch.com/questions/qa-plugin/wysiwyg-editor/ckeditor/plugins/smiley/images/skull-ej.jpg&quot; style=&quot;height:20px; width:20px&quot;&gt;&lt;/p&gt;</description>
<category>Other</category>
<guid isPermaLink="true">https://www.kidzsearch.com/questions/513400/what-starts-with-an-f-ends-in-an-f-but-doesnt-have-an-f-in-it</guid>
<pubDate>Fri, 07 Feb 2025 23:33:35 +0000</pubDate>
</item>
<item>
<title>so I did a lil coding thing...</title>
<link>https://www.kidzsearch.com/questions/501672/so-i-did-a-lil-coding-thing</link>
<description>i wuz just coding something for fun, but im pretty proud of it!&lt;br /&gt;
&lt;br /&gt;
what I made was a gregorian to lunar date calender, using a dating system I developed myself!&lt;br /&gt;
&lt;br /&gt;
here's a little demo, and tell me what your birthday is in the lunar dating system! mine is the Waning Gibbous of Lunation 1085 Epslion.&lt;br /&gt;
(EDIT: I forgor the link, sorry :p)&lt;br /&gt;
&lt;a href=&quot;https://codepen.io/code-org-on-steroids/pen/pvzYxeR&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://codepen.io/code-org-on-steroids/pen/pvzYxeR&lt;/a&gt;</description>
<category>Technology</category>
<guid isPermaLink="true">https://www.kidzsearch.com/questions/501672/so-i-did-a-lil-coding-thing</guid>
<pubDate>Fri, 31 Jan 2025 15:36:32 +0000</pubDate>
</item>
<item>
<title>Any python programmers here, why doesn't this while loop repeat after the run loop ends? (at the bottom)</title>
<link>https://www.kidzsearch.com/questions/498733/any-python-programmers-here-why-doesnt-this-while-loop-repeat-after-the-run-loop-ends-at-the-bottom</link>
<description>

&lt;pre&gt;
&lt;/pre&gt;

&lt;pre&gt;&lt;span style=&quot;color:#808080&quot;&gt;# if anything has a red underline, its just KS being weird&lt;/span&gt;&lt;/pre&gt;

&lt;pre&gt;&lt;span style=&quot;color:#cc7832&quot;&gt;while True&lt;/span&gt;:
    run = &lt;span style=&quot;color:#6897bb&quot;&gt;0
&lt;/span&gt;&lt;span style=&quot;color:#6897bb&quot;&gt;    &lt;/span&gt;order = []
    script = &lt;span style=&quot;color:#6897bb&quot;&gt;1
&lt;/span&gt;
&lt;span style=&quot;color:#6897bb&quot;&gt;    &lt;/span&gt;&lt;span style=&quot;color:#cc7832&quot;&gt;while &lt;/span&gt;script == &lt;span style=&quot;color:#6897bb&quot;&gt;1&lt;/span&gt;:
        imput = &lt;span style=&quot;color:#8888c6&quot;&gt;input&lt;/span&gt;(&lt;span style=&quot;color:#6a8759&quot;&gt;&quot;&quot;&lt;/span&gt;)
        order.append(imput)
        &lt;span style=&quot;color:#cc7832&quot;&gt;if &lt;/span&gt;imput == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;run()&quot;&lt;/span&gt;:
            script = &lt;span style=&quot;color:#6897bb&quot;&gt;0
&lt;/span&gt;&lt;span style=&quot;color:#6897bb&quot;&gt;            &lt;/span&gt;imput = &lt;span style=&quot;color:#6897bb&quot;&gt;0
&lt;/span&gt;&lt;span style=&quot;color:#6897bb&quot;&gt;            &lt;/span&gt;run = &lt;span style=&quot;color:#6897bb&quot;&gt;1
&lt;/span&gt;&lt;span style=&quot;color:#6897bb&quot;&gt;    &lt;/span&gt;&lt;span style=&quot;color:#cc7832&quot;&gt;while &lt;/span&gt;run == &lt;span style=&quot;color:#6897bb&quot;&gt;1&lt;/span&gt;:
        &lt;span style=&quot;color:#808080&quot;&gt;# variables
&lt;/span&gt;&lt;span style=&quot;color:#808080&quot;&gt;        &lt;/span&gt;&lt;span style=&quot;color:#cc7832&quot;&gt;if &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;set'&quot;&lt;/span&gt;:
            &lt;span style=&quot;color:#cc7832&quot;&gt;if &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;1&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;1&quot;&lt;/span&gt;:
                var1 = order[&lt;span style=&quot;color:#6897bb&quot;&gt;2&lt;/span&gt;]
            &lt;span style=&quot;color:#cc7832&quot;&gt;elif &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;1&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;2&quot;&lt;/span&gt;:
                var2 = order[&lt;span style=&quot;color:#6897bb&quot;&gt;2&lt;/span&gt;]
            &lt;span style=&quot;color:#cc7832&quot;&gt;elif &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;1&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;3&quot;&lt;/span&gt;:
                var3 = order[&lt;span style=&quot;color:#6897bb&quot;&gt;2&lt;/span&gt;]
            order.pop(&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;)
            order.pop(&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;)
            order.pop(&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;)

        &lt;span style=&quot;color:#808080&quot;&gt;# print
&lt;/span&gt;&lt;span style=&quot;color:#808080&quot;&gt;        &lt;/span&gt;&lt;span style=&quot;color:#cc7832&quot;&gt;if &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;write'&quot;&lt;/span&gt;:
            &lt;span style=&quot;color:#8888c6&quot;&gt;print&lt;/span&gt;(order[&lt;span style=&quot;color:#6897bb&quot;&gt;1&lt;/span&gt;])
            order.pop(&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;)
            order.pop(&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;)
        &lt;span style=&quot;color:#cc7832&quot;&gt;elif &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;write&quot;&lt;/span&gt;:
            &lt;span style=&quot;color:#cc7832&quot;&gt;if &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;1&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;1&quot;&lt;/span&gt;:
                &lt;span style=&quot;color:#8888c6&quot;&gt;print&lt;/span&gt;(var1)
            &lt;span style=&quot;color:#cc7832&quot;&gt;elif &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;1&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;2&quot;&lt;/span&gt;:
                &lt;span style=&quot;color:#8888c6&quot;&gt;print&lt;/span&gt;(var2)
            &lt;span style=&quot;color:#cc7832&quot;&gt;elif &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;1&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;3&quot;&lt;/span&gt;:
                &lt;span style=&quot;color:#8888c6&quot;&gt;print&lt;/span&gt;(var3)
            &lt;span style=&quot;color:#cc7832&quot;&gt;if &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;1&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;result&quot;&lt;/span&gt;:
                &lt;span style=&quot;color:#8888c6&quot;&gt;print&lt;/span&gt;(&lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(solution))
            order.pop(&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;)
            order.pop(&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;)

        &lt;span style=&quot;color:#808080&quot;&gt;# math
&lt;/span&gt;&lt;span style=&quot;color:#808080&quot;&gt;        &lt;/span&gt;&lt;span style=&quot;color:#cc7832&quot;&gt;if &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;add'&quot; &lt;/span&gt;&lt;span style=&quot;color:#cc7832&quot;&gt;or &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;subtract'&quot; &lt;/span&gt;&lt;span style=&quot;color:#cc7832&quot;&gt;or &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;multiply'&quot; &lt;/span&gt;&lt;span style=&quot;color:#cc7832&quot;&gt;or &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;divide'&quot;&lt;/span&gt;:
            &lt;span style=&quot;color:#cc7832&quot;&gt;if &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;add'&quot;&lt;/span&gt;:
                solution = &lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(order[&lt;span style=&quot;color:#6897bb&quot;&gt;1&lt;/span&gt;]) + &lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(order[&lt;span style=&quot;color:#6897bb&quot;&gt;2&lt;/span&gt;])
            &lt;span style=&quot;color:#cc7832&quot;&gt;elif &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;subtract'&quot;&lt;/span&gt;:
                solution = &lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(order[&lt;span style=&quot;color:#6897bb&quot;&gt;1&lt;/span&gt;]) - &lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(order[&lt;span style=&quot;color:#6897bb&quot;&gt;2&lt;/span&gt;])
            &lt;span style=&quot;color:#cc7832&quot;&gt;elif &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;multiply'&quot;&lt;/span&gt;:
                solution = &lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(order[&lt;span style=&quot;color:#6897bb&quot;&gt;1&lt;/span&gt;]) * &lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(order[&lt;span style=&quot;color:#6897bb&quot;&gt;2&lt;/span&gt;])
            &lt;span style=&quot;color:#cc7832&quot;&gt;elif &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;divide'&quot;&lt;/span&gt;:
                solution = &lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(order[&lt;span style=&quot;color:#6897bb&quot;&gt;1&lt;/span&gt;]) / &lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(order[&lt;span style=&quot;color:#6897bb&quot;&gt;2&lt;/span&gt;])
                order.pop(&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;)
                order.pop(&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;)
                order.pop(&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;)
        &lt;span style=&quot;color:#cc7832&quot;&gt;if &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;add&quot; &lt;/span&gt;&lt;span style=&quot;color:#cc7832&quot;&gt;or &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;subtract&quot; &lt;/span&gt;&lt;span style=&quot;color:#cc7832&quot;&gt;or &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;multiply&quot; &lt;/span&gt;&lt;span style=&quot;color:#cc7832&quot;&gt;or &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;divide&quot;&lt;/span&gt;:
            &lt;span style=&quot;color:#cc7832&quot;&gt;if &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;1&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;1&quot;&lt;/span&gt;:
                x = &lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(var1)
            &lt;span style=&quot;color:#cc7832&quot;&gt;elif &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;1&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;2&quot;&lt;/span&gt;:
                x = &lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(var2)
            &lt;span style=&quot;color:#cc7832&quot;&gt;elif &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;1&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;3&quot;&lt;/span&gt;:
                x = &lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(var3)
            &lt;span style=&quot;color:#cc7832&quot;&gt;if &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;2&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;1&quot;&lt;/span&gt;:
                y = &lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(var1)
            &lt;span style=&quot;color:#cc7832&quot;&gt;elif &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;2&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;2&quot;&lt;/span&gt;:
                y = &lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(var2)
            &lt;span style=&quot;color:#cc7832&quot;&gt;elif &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;2&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;3&quot;&lt;/span&gt;:
                y = &lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(var3)
            &lt;span style=&quot;color:#cc7832&quot;&gt;if &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;add&quot;&lt;/span&gt;:
                solution = x + y
            &lt;span style=&quot;color:#cc7832&quot;&gt;elif &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;subtract&quot;&lt;/span&gt;:
                solution = x - y
            &lt;span style=&quot;color:#cc7832&quot;&gt;elif &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;multiply&quot;&lt;/span&gt;:
                solution = x * y
            &lt;span style=&quot;color:#cc7832&quot;&gt;elif &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;divide&quot;&lt;/span&gt;:
                solution = x / y
            order.pop(&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;)
            order.pop(&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;)
            order.pop(&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;)
        &lt;span style=&quot;color:#cc7832&quot;&gt;if &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;addvar'&quot; &lt;/span&gt;&lt;span style=&quot;color:#cc7832&quot;&gt;or &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;subtractvar'&quot; &lt;/span&gt;&lt;span style=&quot;color:#cc7832&quot;&gt;or &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;multiplyar'&quot; &lt;/span&gt;&lt;span style=&quot;color:#cc7832&quot;&gt;or &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;dividevar'&quot;&lt;/span&gt;:
            &lt;span style=&quot;color:#cc7832&quot;&gt;if &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;addvar'&quot;&lt;/span&gt;:
                solution = &lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(order[&lt;span style=&quot;color:#6897bb&quot;&gt;2&lt;/span&gt;]) + &lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(order[&lt;span style=&quot;color:#6897bb&quot;&gt;3&lt;/span&gt;])
            &lt;span style=&quot;color:#cc7832&quot;&gt;elif &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;subtractvar'&quot;&lt;/span&gt;:
                solution = &lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(order[&lt;span style=&quot;color:#6897bb&quot;&gt;2&lt;/span&gt;]) - &lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(order[&lt;span style=&quot;color:#6897bb&quot;&gt;3&lt;/span&gt;])
            &lt;span style=&quot;color:#cc7832&quot;&gt;elif &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;multiplyvar'&quot;&lt;/span&gt;:
                solution = &lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(order[&lt;span style=&quot;color:#6897bb&quot;&gt;2&lt;/span&gt;]) * &lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(order[&lt;span style=&quot;color:#6897bb&quot;&gt;3&lt;/span&gt;])
            &lt;span style=&quot;color:#cc7832&quot;&gt;elif &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;dividevar'&quot;&lt;/span&gt;:
                solution = &lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(order[&lt;span style=&quot;color:#6897bb&quot;&gt;2&lt;/span&gt;]) / &lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(order[&lt;span style=&quot;color:#6897bb&quot;&gt;3&lt;/span&gt;])
            &lt;span style=&quot;color:#cc7832&quot;&gt;if &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;1&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;1&quot;&lt;/span&gt;:
                var1 = solution
            &lt;span style=&quot;color:#cc7832&quot;&gt;elif &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;1&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;2&quot;&lt;/span&gt;:
                var2 = solution
            &lt;span style=&quot;color:#cc7832&quot;&gt;elif &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;1&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;3&quot;&lt;/span&gt;:
                var3 = solution
            order.pop(&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;)
            order.pop(&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;)
            order.pop(&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;)
            order.pop(&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;)

        &lt;span style=&quot;color:#808080&quot;&gt;# if
&lt;/span&gt;&lt;span style=&quot;color:#808080&quot;&gt;        &lt;/span&gt;&lt;span style=&quot;color:#cc7832&quot;&gt;if &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;if&quot;&lt;/span&gt;:
            &lt;span style=&quot;color:#cc7832&quot;&gt;if &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;1&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;='&quot;&lt;/span&gt;:
                &lt;span style=&quot;color:#cc7832&quot;&gt;if not &lt;/span&gt;&lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(order[&lt;span style=&quot;color:#6897bb&quot;&gt;2&lt;/span&gt;]) == &lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(order[&lt;span style=&quot;color:#6897bb&quot;&gt;3&lt;/span&gt;]):
                    &lt;span style=&quot;color:#cc7832&quot;&gt;while not &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;close&quot;&lt;/span&gt;:
                        order.pop(&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;)
            &lt;span style=&quot;color:#cc7832&quot;&gt;if &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;1&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;&amp;gt;'&quot;&lt;/span&gt;:
                &lt;span style=&quot;color:#cc7832&quot;&gt;if not &lt;/span&gt;&lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(order[&lt;span style=&quot;color:#6897bb&quot;&gt;2&lt;/span&gt;]) &amp;gt; &lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(order[&lt;span style=&quot;color:#6897bb&quot;&gt;3&lt;/span&gt;]):
                    &lt;span style=&quot;color:#cc7832&quot;&gt;while not &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;close&quot;&lt;/span&gt;:
                        order.pop(&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;)
            &lt;span style=&quot;color:#cc7832&quot;&gt;if &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;1&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;&amp;lt;'&quot;&lt;/span&gt;:
                &lt;span style=&quot;color:#cc7832&quot;&gt;if not &lt;/span&gt;&lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(order[&lt;span style=&quot;color:#6897bb&quot;&gt;2&lt;/span&gt;]) &amp;lt; &lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(order[&lt;span style=&quot;color:#6897bb&quot;&gt;3&lt;/span&gt;]):
                    &lt;span style=&quot;color:#cc7832&quot;&gt;while not &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;close&quot;&lt;/span&gt;:
                        order.pop(&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;)
            &lt;span style=&quot;color:#cc7832&quot;&gt;if &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;1&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;=&quot;&lt;/span&gt;:
                &lt;span style=&quot;color:#cc7832&quot;&gt;if &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;2&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;1&quot;&lt;/span&gt;:
                    x = &lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(var1)
                &lt;span style=&quot;color:#cc7832&quot;&gt;elif &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;2&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;2&quot;&lt;/span&gt;:
                    x = &lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(var2)
                &lt;span style=&quot;color:#cc7832&quot;&gt;elif &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;2&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;3&quot;&lt;/span&gt;:
                    x = &lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(var3)
                &lt;span style=&quot;color:#cc7832&quot;&gt;if &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;3&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;1&quot;&lt;/span&gt;:
                    y = &lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(var1)
                &lt;span style=&quot;color:#cc7832&quot;&gt;elif &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;3&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;2&quot;&lt;/span&gt;:
                    y = &lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(var2)
                &lt;span style=&quot;color:#cc7832&quot;&gt;elif &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;3&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;3&quot;&lt;/span&gt;:
                    y = &lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(var3)
                &lt;span style=&quot;color:#cc7832&quot;&gt;if not &lt;/span&gt;x == y:
                    &lt;span style=&quot;color:#cc7832&quot;&gt;while not &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;close&quot;&lt;/span&gt;:
                        order.pop(&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;)
            &lt;span style=&quot;color:#cc7832&quot;&gt;if &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;1&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;&amp;gt;&quot;&lt;/span&gt;:
                &lt;span style=&quot;color:#cc7832&quot;&gt;if &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;2&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;1&quot;&lt;/span&gt;:
                    x = &lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(var1)
                &lt;span style=&quot;color:#cc7832&quot;&gt;elif &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;2&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;2&quot;&lt;/span&gt;:
                    x = &lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(var2)
                &lt;span style=&quot;color:#cc7832&quot;&gt;elif &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;2&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;3&quot;&lt;/span&gt;:
                    x = &lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(var3)
                &lt;span style=&quot;color:#cc7832&quot;&gt;if &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;3&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;1&quot;&lt;/span&gt;:
                    y = &lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(var1)
                &lt;span style=&quot;color:#cc7832&quot;&gt;elif &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;3&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;2&quot;&lt;/span&gt;:
                    y = &lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(var2)
                &lt;span style=&quot;color:#cc7832&quot;&gt;elif &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;3&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;3&quot;&lt;/span&gt;:
                    y = &lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(var3)
                &lt;span style=&quot;color:#cc7832&quot;&gt;if not &lt;/span&gt;x &amp;gt; y:
                    &lt;span style=&quot;color:#cc7832&quot;&gt;while not &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;close&quot;&lt;/span&gt;:
                        order.pop(&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;)
            &lt;span style=&quot;color:#cc7832&quot;&gt;if &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;1&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;&amp;lt;&quot;&lt;/span&gt;:
                &lt;span style=&quot;color:#cc7832&quot;&gt;if &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;2&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;1&quot;&lt;/span&gt;:
                    x = &lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(var1)
                &lt;span style=&quot;color:#cc7832&quot;&gt;elif &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;2&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;2&quot;&lt;/span&gt;:
                    x = &lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(var2)
                &lt;span style=&quot;color:#cc7832&quot;&gt;elif &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;2&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;3&quot;&lt;/span&gt;:
                    x = &lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(var3)
                &lt;span style=&quot;color:#cc7832&quot;&gt;if &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;3&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;1&quot;&lt;/span&gt;:
                    y = &lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(var1)
                &lt;span style=&quot;color:#cc7832&quot;&gt;elif &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;3&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;2&quot;&lt;/span&gt;:
                    y = &lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(var2)
                &lt;span style=&quot;color:#cc7832&quot;&gt;elif &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;3&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;3&quot;&lt;/span&gt;:
                    y = &lt;span style=&quot;color:#8888c6&quot;&gt;int&lt;/span&gt;(var3)
                &lt;span style=&quot;color:#cc7832&quot;&gt;if not &lt;/span&gt;x &amp;lt; y:
                    &lt;span style=&quot;color:#cc7832&quot;&gt;while not &lt;/span&gt;order[&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;] == &lt;span style=&quot;color:#6a8759&quot;&gt;&quot;close&quot;&lt;/span&gt;:
                        order.pop(&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;)
            &lt;span style=&quot;color:#cc7832&quot;&gt;for &lt;/span&gt;i &lt;span style=&quot;color:#cc7832&quot;&gt;in &lt;/span&gt;&lt;span style=&quot;color:#8888c6&quot;&gt;range&lt;/span&gt;(&lt;span style=&quot;color:#6897bb&quot;&gt;4&lt;/span&gt;):
                order.pop(&lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;)
        &lt;span style=&quot;color:#cc7832&quot;&gt;if &lt;/span&gt;&lt;span style=&quot;color:#8888c6&quot;&gt;len&lt;/span&gt;(order) &amp;lt; &lt;span style=&quot;color:#6897bb&quot;&gt;1&lt;/span&gt;:
            run = &lt;span style=&quot;color:#6897bb&quot;&gt;0&lt;/span&gt;&lt;/pre&gt;</description>
<category>Technology</category>
<guid isPermaLink="true">https://www.kidzsearch.com/questions/498733/any-python-programmers-here-why-doesnt-this-while-loop-repeat-after-the-run-loop-ends-at-the-bottom</guid>
<pubDate>Wed, 29 Jan 2025 20:07:24 +0000</pubDate>
</item>
<item>
<title>I updated the HTML tutorial!</title>
<link>https://www.kidzsearch.com/questions/370689/i-updated-the-html-tutorial</link>
<description>

&lt;p&gt;I updated the tutorial!&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;div&gt;Visit it at&amp;nbsp;&lt;a href=&quot;https://www.kidzsearch.com/questions/370482/learn-html-here&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://www.kidzsearch.com/questions/370482/learn-html-here&lt;/a&gt;&lt;/div&gt;</description>
<category>Other</category>
<guid isPermaLink="true">https://www.kidzsearch.com/questions/370689/i-updated-the-html-tutorial</guid>
<pubDate>Mon, 07 Oct 2024 23:50:49 +0000</pubDate>
</item>
<item>
<title>Learn HTML here!</title>
<link>https://www.kidzsearch.com/questions/370482/learn-html-here</link>
<description>

&lt;p&gt;(updated:&amp;nbsp;&lt;a rel=&quot;nofollow&quot; href=&quot;https://www.kidzsearch.com/questions/383957/learn-html-here-repost-updated-css-too&quot;&gt;https://www.kidzsearch.com/questions/383957/learn-html-here-repost-updated-css-too&lt;/a&gt;)&lt;/p&gt;

&lt;p&gt;Hey guys! So, you clicked on this post to learn HTML, eh? Well, your in the right place!&lt;/p&gt;

&lt;p&gt;HTML is a programming language that is fun and frustrating at times.&lt;/p&gt;

&lt;p&gt;HTML stands for HyperText Markup Language&lt;/p&gt;

&lt;p&gt;You could use it to make forums, websites, documents, and MORE!&lt;/p&gt;

&lt;p&gt;So, lets get started!&lt;/p&gt;

&lt;p&gt;Create a new file in a folder called index.html (i recommend using&amp;nbsp;&lt;a rel=&quot;nofollow&quot; href=&quot;https://vscode.dev&quot;&gt;&lt;em&gt;&lt;strong&gt;&lt;u&gt;&lt;span style=&quot;color:#3498db&quot;&gt;https://vscode.dev&lt;/span&gt;&lt;/u&gt;&lt;/strong&gt;&lt;/em&gt;&lt;/a&gt;)&lt;/p&gt;

&lt;p&gt;First, you put &amp;lt;DOCTYPE! html&amp;gt; at the top on line 1! (formatting is important so you can read your code)&lt;/p&gt;

&lt;p&gt;After that, put &amp;lt;html&amp;gt;, if your code editor is good (i recommend &lt;a rel=&quot;nofollow&quot; href=&quot;https://vscode.dev&quot;&gt;&lt;em&gt;&lt;strong&gt;&lt;u&gt;&lt;span style=&quot;color:#3498db&quot;&gt;https://vscode.dev&lt;/span&gt;&lt;/u&gt;&lt;/strong&gt;&lt;/em&gt;&lt;/a&gt;) it should auto generate &amp;lt;/html&amp;gt; after that. the &amp;lt;html&amp;gt; and &amp;lt;/html&amp;gt; things are called tags, you can put things in them!&lt;/p&gt;

&lt;p&gt;After you put that, put &amp;lt;head&amp;gt; in between&amp;nbsp;the &amp;lt;html&amp;gt; tags. Anything inside a tag is called content, and tags and content together are called elements! please remember these words for later.&lt;/p&gt;

&lt;p&gt;After you put your head tags, put &amp;lt;title&amp;gt; inbetween &amp;lt;head&amp;gt; and &amp;lt;/head&amp;gt;&lt;/p&gt;

&lt;p&gt;that is the data that will be applied to your document!&lt;/p&gt;

&lt;p&gt;after that, in between &amp;lt;title&amp;gt; and &amp;lt;/title&amp;gt;, put whatever you want! When you open the document in your files, it will open a page on your browser! Then if you look at the tab name, what you put in the title tags will be there!&lt;/p&gt;

&lt;p&gt;-------------------CONTINUED-------------------&lt;/p&gt;

&lt;p&gt;After that, below the &amp;lt;/head&amp;gt; tag, put &amp;lt;body&amp;gt;&lt;/p&gt;

&lt;p&gt;&amp;lt;body&amp;gt; is the element that will hold everything that the user can see (images, gifs, text, etc.)&lt;/p&gt;

&lt;p&gt;Put &amp;lt;h1&amp;gt;, and inside those &amp;lt;h1&amp;gt; tags, put whatever text you want!&lt;/p&gt;

&lt;p&gt;When you reload the page, it will show big text!&lt;/p&gt;

&lt;p&gt;Try that with &amp;lt;h2&amp;gt;, &amp;lt;h3&amp;gt;, &amp;lt;h4&amp;gt;, &amp;lt;h5&amp;gt;, and &amp;lt;h6&amp;gt;!&lt;/p&gt;

&lt;p&gt;Those are the headers! Now, lets make paragraphs!&lt;/p&gt;

&lt;p&gt;put &amp;lt;p&amp;gt; tags. Like the headers, put text inside them to show that text!&lt;/p&gt;

&lt;p&gt;So, you put the text, right?&lt;/p&gt;

&lt;p&gt;put a new line in the &amp;lt;p&amp;gt; tag, and on that new line, put text!&lt;/p&gt;

&lt;p&gt;do you notice something? Yep, that new line doesn't break apart the text!&lt;/p&gt;

&lt;p&gt;to do that, put &amp;lt;br&amp;gt;&amp;nbsp;for a new line!&amp;nbsp;&lt;/p&gt;

&lt;p&gt;this also spaces apart elements if your too lazy to use padding (we will get into that later)&lt;/p&gt;

&lt;p&gt;also, you can put images! In your files, put an image in the same folder as your html file&lt;/p&gt;

&lt;p&gt;then put &amp;lt;img src=&quot;image.png&quot; height=&quot;50&quot; width=&quot;50&quot;&amp;gt;&lt;/p&gt;

&lt;p&gt;that will create an image on your page that is exactly 50 pixels tall and 50 pixels wide.&lt;/p&gt;

&lt;p&gt;but, the image will lose all of its proportions!&lt;/p&gt;

&lt;p&gt;to keep them, remove the width=&quot;50&quot; or height=&quot;50&quot; part of your image tag.&lt;/p&gt;

&lt;p&gt;So, that's done!&lt;/p&gt;

&lt;p&gt;next, we will learn how to put videos and audio.&lt;/p&gt;

&lt;p&gt;-------------------CONTINUED-------------------&lt;/p&gt;

&lt;p&gt;so, lets say you want AUTOPLAYING BACKGROUND MUSIC&lt;/p&gt;

&lt;p&gt;put an &amp;lt;audio&amp;gt; tag, also, for images, videos, or audio, you don't need the second tag.&lt;/p&gt;

&lt;p&gt;put &amp;lt;audio src=&quot;audio.mp3&quot; autoplay&amp;gt;&lt;/p&gt;

&lt;p&gt;that will put auto-playing background music.&lt;/p&gt;

&lt;p&gt;also, experiment with images, videos, and audio!&lt;/p&gt;

&lt;p&gt;there is also stuff you can put in the tag with autoplay, like controls, and looped!&lt;/p&gt;

&lt;p&gt;now, lets put a video!&lt;/p&gt;

&lt;p&gt;put a &amp;lt;video&amp;gt; tag&lt;/p&gt;

&lt;p&gt;in that tag, put autoplay, looped, and controls&lt;/p&gt;

&lt;p&gt;it should look like this&amp;nbsp;&lt;/p&gt;

&lt;p&gt;&amp;lt;video src=&quot;video.mp4&quot; autoplay looped controls&amp;gt;&lt;/p&gt;

&lt;p&gt;that will put a video on the screen. and btw, the height= and width= stuff works with almost all tags!&lt;/p&gt;

&lt;p&gt;thats it for now!&lt;/p&gt;

&lt;p&gt;-------------------END-------------------&lt;/p&gt;

&lt;p&gt;I'll edit this and continue this soon. I might create a new post whether you can edit posts or not. Bye bye!&lt;/p&gt;</description>
<category>Other</category>
<guid isPermaLink="true">https://www.kidzsearch.com/questions/370482/learn-html-here</guid>
<pubDate>Mon, 07 Oct 2024 21:41:14 +0000</pubDate>
</item>
<item>
<title>What should i learn first?</title>
<link>https://www.kidzsearch.com/questions/71937/what-should-i-learn-first</link>
<description>What should I learn first, if I want to develop websites?</description>
<category>Technology</category>
<guid isPermaLink="true">https://www.kidzsearch.com/questions/71937/what-should-i-learn-first</guid>
<pubDate>Sat, 29 Aug 2020 07:10:04 +0000</pubDate>
</item>
<item>
<title>I'm making an app.</title>
<link>https://www.kidzsearch.com/questions/16470/im-making-an-app</link>
<description>So... I'm going to make an app where you are in a multiplayer running race, but I will use a physical motion API, So you actually have to run in real life while holding the IOS device. Do you think this is a good idea?</description>
<category>Technology</category>
<guid isPermaLink="true">https://www.kidzsearch.com/questions/16470/im-making-an-app</guid>
<pubDate>Mon, 10 Oct 2016 10:26:35 +0000</pubDate>
</item>
</channel>
</rss>