<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[PythonClub - Portal]]></title>
		<link>https://pythonclub.bruemmer.net/</link>
		<description><![CDATA[PythonClub - https://pythonclub.bruemmer.net]]></description>
		<pubDate>Wed, 15 Apr 2026 20:59:53 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Manche Sachen hier habe 200 views?]]></title>
			<link>https://pythonclub.bruemmer.net/thread-8.html</link>
			<pubDate>Fri, 15 May 2020 01:44:26 +0200</pubDate>
			<guid isPermaLink="false">https://pythonclub.bruemmer.net/thread-8.html</guid>
			<description><![CDATA[und seit wan kann man in dieser box php und javascript benutzen]]></description>
			<content:encoded><![CDATA[und seit wan kann man in dieser box php und javascript benutzen]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Hab das mit der Turtle Gebaut]]></title>
			<link>https://pythonclub.bruemmer.net/thread-7.html</link>
			<pubDate>Mon, 06 May 2019 14:52:18 +0200</pubDate>
			<guid isPermaLink="false">https://pythonclub.bruemmer.net/thread-7.html</guid>
			<description><![CDATA[Sollte nur mit python gehen<br />
<a href="https://github.com/TeamRadioRoll/TurtlePong/tree/master" target="_blank" rel="noopener" class="mycode_url">https://github.com/TeamRadioRoll/TurtlePong/tree/master</a>]]></description>
			<content:encoded><![CDATA[Sollte nur mit python gehen<br />
<a href="https://github.com/TeamRadioRoll/TurtlePong/tree/master" target="_blank" rel="noopener" class="mycode_url">https://github.com/TeamRadioRoll/TurtlePong/tree/master</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Kann in Allegmeines nichts posten also hier]]></title>
			<link>https://pythonclub.bruemmer.net/thread-6.html</link>
			<pubDate>Sat, 04 May 2019 23:02:10 +0200</pubDate>
			<guid isPermaLink="false">https://pythonclub.bruemmer.net/thread-6.html</guid>
			<description><![CDATA[<a href="https://github.com/TeamRadioRoll/SmallPython" target="_blank" rel="noopener" class="mycode_url">https://github.com/TeamRadioRoll/SmallPython</a><br />
<br />
Das ist das pong game das ich Gemchat habe muss pygame vorher Installieren]]></description>
			<content:encoded><![CDATA[<a href="https://github.com/TeamRadioRoll/SmallPython" target="_blank" rel="noopener" class="mycode_url">https://github.com/TeamRadioRoll/SmallPython</a><br />
<br />
Das ist das pong game das ich Gemchat habe muss pygame vorher Installieren]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Na, wenn das kein schönes Mandala ist...]]></title>
			<link>https://pythonclub.bruemmer.net/thread-5.html</link>
			<pubDate>Sat, 04 May 2019 16:08:07 +0200</pubDate>
			<guid isPermaLink="false">https://pythonclub.bruemmer.net/thread-5.html</guid>
			<description><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>import turtle<br />
<br />
turtle.speed(10)<br />
turtle.shape('turtle')<br />
# ein bisschen bewegen<br />
turtle.up()<br />
turtle.home()<br />
turtle.forward(80)<br />
turtle.right(90)<br />
turtle.forward(115)<br />
turtle.left(90)<br />
turtle.down()<br />
<br />
# mandala<br />
turtle.color((0, 0, 0.5) )<br />
zaehler = 1<br />
while ( zaehler &lt;= 120 ):<br />
    # turtle.color((0, 0, 0.5 + zaehler / 300 ) )<br />
    turtle.forward(200)<br />
    turtle.left(147)<br />
    zaehler=zaehler + 1<br />
<br />
turtle.left(180)<br />
turtle.color(0.5, 0, 0 )<br />
zaehler = 1<br />
while ( zaehler &lt;= 120 ):<br />
    # turtle.color((0.5 + zaehler / 300 ), 0, 0 )<br />
    turtle.forward(300)<br />
    turtle.left(147)<br />
    zaehler=zaehler + 1<br />
<br />
turtle.up()<br />
turtle.right(91.2)<br />
turtle.forward(101)<br />
turtle.down()<br />
<br />
turtle.color(0, 0.5, 0 )<br />
zaehler = 1<br />
while ( zaehler &lt;= 120 ):<br />
    # turtle.color(0, (0.5 + zaehler / 300 ), 0 )<br />
    turtle.forward(350)<br />
    turtle.left(147)<br />
    zaehler=zaehler + 1<br />
<br />
# Ende</code></div></div><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://pythonclub.bruemmer.net/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=6" target="_blank" title="">Mandala.jpg</a> (Größe: 140,9 KB / Downloads: 1)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>import turtle<br />
<br />
turtle.speed(10)<br />
turtle.shape('turtle')<br />
# ein bisschen bewegen<br />
turtle.up()<br />
turtle.home()<br />
turtle.forward(80)<br />
turtle.right(90)<br />
turtle.forward(115)<br />
turtle.left(90)<br />
turtle.down()<br />
<br />
# mandala<br />
turtle.color((0, 0, 0.5) )<br />
zaehler = 1<br />
while ( zaehler &lt;= 120 ):<br />
    # turtle.color((0, 0, 0.5 + zaehler / 300 ) )<br />
    turtle.forward(200)<br />
    turtle.left(147)<br />
    zaehler=zaehler + 1<br />
<br />
turtle.left(180)<br />
turtle.color(0.5, 0, 0 )<br />
zaehler = 1<br />
while ( zaehler &lt;= 120 ):<br />
    # turtle.color((0.5 + zaehler / 300 ), 0, 0 )<br />
    turtle.forward(300)<br />
    turtle.left(147)<br />
    zaehler=zaehler + 1<br />
<br />
turtle.up()<br />
turtle.right(91.2)<br />
turtle.forward(101)<br />
turtle.down()<br />
<br />
turtle.color(0, 0.5, 0 )<br />
zaehler = 1<br />
while ( zaehler &lt;= 120 ):<br />
    # turtle.color(0, (0.5 + zaehler / 300 ), 0 )<br />
    turtle.forward(350)<br />
    turtle.left(147)<br />
    zaehler=zaehler + 1<br />
<br />
# Ende</code></div></div><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://pythonclub.bruemmer.net/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=6" target="_blank" title="">Mandala.jpg</a> (Größe: 140,9 KB / Downloads: 1)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Installation Python]]></title>
			<link>https://pythonclub.bruemmer.net/thread-1.html</link>
			<pubDate>Fri, 22 Mar 2019 22:28:54 +0100</pubDate>
			<guid isPermaLink="false">https://pythonclub.bruemmer.net/thread-1.html</guid>
			<description><![CDATA[Für diejenigen, die sich Python installieren möchten, ist es am einfachsten, wenn Ihr das Paket <a href="https://sourceforge.net/projects/winpython/files/WinPython_3.6/3.6.8.0/WinPython32-3.6.8.0Qt5.exe/download" target="_blank" rel="noopener" class="mycode_url">https://sourceforge.net/projects/winpython/files/WinPython_3.6/3.6.8.0/WinPython32-3.6.8.0Qt5.exe/download </a> herunter ladet. Es ist das Paket, welches wir auch in der Schule verwenden.<br />
<br />
Die heruntergeladene Datei müsst Ihr Speichern und per Doppelklick starten.<br />
<br />
Merkt Euch, in welches Verzeichnis es installiert wird. Dort findet Ihr das IDLE...<br />
<br />
Viel Erfolg und Spaß<br />
<br />
Christian]]></description>
			<content:encoded><![CDATA[Für diejenigen, die sich Python installieren möchten, ist es am einfachsten, wenn Ihr das Paket <a href="https://sourceforge.net/projects/winpython/files/WinPython_3.6/3.6.8.0/WinPython32-3.6.8.0Qt5.exe/download" target="_blank" rel="noopener" class="mycode_url">https://sourceforge.net/projects/winpython/files/WinPython_3.6/3.6.8.0/WinPython32-3.6.8.0Qt5.exe/download </a> herunter ladet. Es ist das Paket, welches wir auch in der Schule verwenden.<br />
<br />
Die heruntergeladene Datei müsst Ihr Speichern und per Doppelklick starten.<br />
<br />
Merkt Euch, in welches Verzeichnis es installiert wird. Dort findet Ihr das IDLE...<br />
<br />
Viel Erfolg und Spaß<br />
<br />
Christian]]></content:encoded>
		</item>
	</channel>
</rss>