<?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>Python basics Archives - Azad Chouhan</title>
	<atom:link href="https://azadchouhan.online/tag/python-basics/feed/" rel="self" type="application/rss+xml" />
	<link>https://azadchouhan.online/tag/python-basics/</link>
	<description>Web Developer &#38; Digital Marketing Expert in WordPress, React, PHP &#38; Shopify</description>
	<lastBuildDate>Mon, 20 Oct 2025 12:45:27 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9</generator>

<image>
	<url>https://azadchouhan.online/wp-content/uploads/2025/08/cropped-azad-chouhan-32x32.png</url>
	<title>Python basics Archives - Azad Chouhan</title>
	<link>https://azadchouhan.online/tag/python-basics/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Master Python Numbers &#038; Math Operations: Beginner’s Friendly Guide</title>
		<link>https://azadchouhan.online/python/master-python-numbers-math-operations-beginners-friendly-guide/</link>
					<comments>https://azadchouhan.online/python/master-python-numbers-math-operations-beginners-friendly-guide/#respond</comments>
		
		<dc:creator><![CDATA[azad chouhan]]></dc:creator>
		<pubDate>Mon, 20 Oct 2025 12:43:43 +0000</pubDate>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[learn Python programming]]></category>
		<category><![CDATA[Python basics]]></category>
		<category><![CDATA[python for beginners]]></category>
		<category><![CDATA[Python math operations]]></category>
		<category><![CDATA[Python numbers tutorial]]></category>
		<guid isPermaLink="false">https://azadchouhan.online/?p=1201</guid>

					<description><![CDATA[<p>Beginner-friendly guide to Python numbers and math operations — int, float, operators, common pitfalls, and a mini calculator example</p>
<p>The post <a href="https://azadchouhan.online/python/master-python-numbers-math-operations-beginners-friendly-guide/">Master Python Numbers &#038; Math Operations: Beginner’s Friendly Guide</a> appeared first on <a href="https://azadchouhan.online">Azad Chouhan</a>.</p>
]]></description>
										<content:encoded><![CDATA[<article>When I first started coding in Python, I felt puzzled by how numbers behaved — especially floats and the differences between operators. Understanding <em>Python numbers</em> and <em>math operations</em> is one of the most useful skills for anyone learning Python. This article explains number types, arithmetic operators, common pitfalls, and a small mini-project to practice. It uses simple language and practical examples.</p>
<h2 id="number-types">1. What Are Python Number Types?</h2>
<p>Before doing math, know the main number types in Python:</p>
<h3>Integers (<code>int</code>)</h3>
<p>Whole numbers with no decimals, for example <code>5</code>, <code>-10</code>, <code>100</code>. Use ints when counting or indexing.</p>
<h3>Floating-point numbers (<code>float</code>)</h3>
<p>Numbers with decimals, like <code>3.14</code> or <code>-0.5</code>. Use floats for averages, percentages, and measurements.</p>
<h3>Complex numbers (<code>complex</code>)</h3>
<p>Numbers with a real and imaginary part (e.g., <code>2 + 3j</code>). These are used in advanced math or scientific code. Most beginners only need <code>int</code> and <code>float</code>.</p>
<div class="note"><strong>Tip:</strong> For everyday scripts, start with <code>int</code> and <code>float</code>. You can learn complex numbers later.</div>
<h2 id="operators">2. Basic Arithmetic Operators in Python</h2>
<p>These are the core operators you’ll use to do math:</p>
<table aria-label="Python arithmetic operators">
<thead>
<tr>
<th>Operator</th>
<th>Meaning</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>+</code></td>
<td>Addition</td>
</tr>
<tr>
<td><code>-</code></td>
<td>Subtraction</td>
</tr>
<tr>
<td><code>*</code></td>
<td>Multiplication</td>
</tr>
<tr>
<td><code>/</code></td>
<td>Division (returns a float)</td>
</tr>
<tr>
<td><code>//</code></td>
<td>Floor (integer) division</td>
</tr>
<tr>
<td><code>%</code></td>
<td>Modulus (remainder)</td>
</tr>
<tr>
<td><code>**</code></td>
<td>Exponentiation (power)</td>
</tr>
</tbody>
</table>
<h3>Quick examples</h3>
<pre><code>a = 10
b = 3

print(a + b)   # 13
print(a - b)   # 7
print(a * b)   # 30
print(a / b)   # 3.3333333333333335  (float)
print(a // b)  # 3  (floor division)
print(a % b)   # 1  (remainder)
print(a ** b)  # 1000  (10 to the power of 3)</code></pre>
<p><strong>Note:</strong> The regular division operator <code>/</code> returns a float. If you expect an integer, use <code>//</code>.</p>
<h2 id="type-conversion">3. Type Conversion &amp; Useful Number Functions</h2>
<p>You will often convert types or use built-in functions for numbers:</p>
<h3>Type conversion (casting)</h3>
<pre><code>x = "5"
y = int(x)     # converts "5" to 5

z = 2.8
w = int(z)     # converts 2.8 to 2 (drops decimals)</code></pre>
<h3>Useful functions</h3>
<ul>
<li><code>abs(number)</code> – absolute value</li>
<li><code>round(number, ndigits)</code> – round to decimals</li>
<li><code>pow(base, exponent)</code> – power (or use <code>**</code>)</li>
</ul>
<div class="note"><strong>Caution:</strong> Converting floats to ints removes the fractional part. If you need precision, plan accordingly.</div>
<h2 id="gotchas">4. Common Pitfalls &amp; Gotchas</h2>
<p>These are mistakes many beginners make (I used to do these too):</p>
<h3>Floating-point precision</h3>
<pre><code>print(0.1 + 0.2)   # 0.30000000000000004</code></pre>
<p>Floats are stored in binary, which can create small rounding errors. For ordinary scripts this is usually fine; for money or critical calculations consider the <code>decimal</code> module.</p>
<h3>Floor division with negatives</h3>
<p><code>-5 // 2</code> gives <code>-3</code> because floor division rounds down, not toward zero.</p>
<h3>Mixing types</h3>
<p>Mixing <code>int</code>, <code>float</code>, and <code>complex</code> can lead to automatic conversions (for example, <code>int + float</code> → <code>float</code>).</p>
<h2 id="mini-calculator">5. Simple Project: Mini Calculator</h2>
<p>Try this small script to practice numbers and math operators:</p>
<pre><code>def mini_calc():
    print("Welcome to Mini-Calculator")
    num1 = float(input("Enter first number: "))
    num2 = float(input("Enter second number: "))

    print("Addition: ", num1 + num2)
    print("Subtraction: ", num1 - num2)
    print("Multiplication: ", num1 * num2)
    print("Division: ", num1 / num2 if num2 != 0 else "Cannot divide by zero")
    print("Floor Division: ", num1 // num2 if num2 != 0 else "Undefined")
    print("Modulus (remainder): ", num1 % num2 if num2 != 0 else "Undefined")
    print("Power: ", num1 ** num2)

if __name__ == "__main__":
    mini_calc()</code></pre>
<p>Run the script and test different values (negatives, floats, zeros) to observe behavior.</p>
<h2 id="why-it-helps">6. Why this knowledge helps</h2>
<p>Understanding numbers and math operations helps in many areas: data analysis, scripts, web apps, budgeting tools and more. It saves debugging time and builds confidence to move on to loops, conditions, and data processing.</p>
<h2 id="final-thoughts">Final thoughts</h2>
<p>Numbers and math operations are basic but essential. Practice small scripts, try different inputs, and you’ll quickly feel comfortable. If you want, I can prepare a printable cheat-sheet of number types and operators.</p>
<p>If you enjoyed learning about Python numbers, you might also like our next guide —<br />
<a title="How to Work with Strings in Python (Beginner-Friendly Guide)" href="https://azadchouhan.online/python/how-to-work-with-strings-in-python-beginner-friendly-guide/"><br />
<strong>How to Work with Strings in Python (Beginner-Friendly Guide)</strong></a></p>
<p>It’s a simple and clear tutorial that explains how to handle text in Python with practical examples.</p>
<p>&nbsp;</p>
</article>
<p>The post <a href="https://azadchouhan.online/python/master-python-numbers-math-operations-beginners-friendly-guide/">Master Python Numbers &#038; Math Operations: Beginner’s Friendly Guide</a> appeared first on <a href="https://azadchouhan.online">Azad Chouhan</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://azadchouhan.online/python/master-python-numbers-math-operations-beginners-friendly-guide/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Python Operators Explained Simply: A Complete Beginner’s Guide</title>
		<link>https://azadchouhan.online/python/python-operators-explained-simply-a-complete-beginners-guide/</link>
					<comments>https://azadchouhan.online/python/python-operators-explained-simply-a-complete-beginners-guide/#respond</comments>
		
		<dc:creator><![CDATA[azad chouhan]]></dc:creator>
		<pubDate>Mon, 13 Oct 2025 17:27:18 +0000</pubDate>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[learn python]]></category>
		<category><![CDATA[Python basics]]></category>
		<category><![CDATA[python for beginners]]></category>
		<category><![CDATA[python operators]]></category>
		<category><![CDATA[python tutorial]]></category>
		<guid isPermaLink="false">https://azadchouhan.online/?p=1181</guid>

					<description><![CDATA[<p>Learn all Python operators in simple English with examples. Understand their types, uses, and practical tips to master Python easily for beginners.</p>
<p>The post <a href="https://azadchouhan.online/python/python-operators-explained-simply-a-complete-beginners-guide/">Python Operators Explained Simply: A Complete Beginner’s Guide</a> appeared first on <a href="https://azadchouhan.online">Azad Chouhan</a>.</p>
]]></description>
										<content:encoded><![CDATA[<article>
<section>When I first started learning Python, I used to get confused about operators — those little symbols like <code>+</code>, <code>-</code>, or <code>==</code>. They looked simple but did a lot behind the scenes. If you’re also starting out and wondering <strong>what Python operators are and how they work</strong>, this guide will make it crystal clear.Let’s break it down step by step — in plain English, without complicated tech jargon.</section>
<section>
<h2>What Are Python Operators?</h2>
<p>In simple words, <strong>operators in Python are symbols or keywords that perform operations on values or variables.</strong></p>
<p>Think of them as tools that tell Python what action to take. For example:</p>
<pre><code>a = 10
b = 5
print(a + b)  # Output: 15
    </code></pre>
<p>Here, the <code>+</code> operator adds two numbers. Easy, right?</p>
</section>
<section>
<h2>Types of Python Operators</h2>
<p>Python gives us different types of operators to perform various tasks. Let’s understand each one with simple examples.</p>
<h3>1. Arithmetic Operators</h3>
<p>These are used for basic math operations — addition, subtraction, multiplication, etc.</p>
<table>
<thead>
<tr>
<th>Operator</th>
<th>Description</th>
<th>Example</th>
</tr>
</thead>
<tbody>
<tr>
<td>+</td>
<td>Addition</td>
<td>10 + 5 = 15</td>
</tr>
<tr>
<td>&#8211;</td>
<td>Subtraction</td>
<td>10 &#8211; 5 = 5</td>
</tr>
<tr>
<td>*</td>
<td>Multiplication</td>
<td>10 * 5 = 50</td>
</tr>
<tr>
<td>/</td>
<td>Division</td>
<td>10 / 5 = 2.0</td>
</tr>
<tr>
<td>%</td>
<td>Modulus (Remainder)</td>
<td>10 % 3 = 1</td>
</tr>
<tr>
<td>**</td>
<td>Exponentiation</td>
<td>2 ** 3 = 8</td>
</tr>
<tr>
<td>//</td>
<td>Floor Division</td>
<td>10 // 3 = 3</td>
</tr>
</tbody>
</table>
<p>When I learned these, I practiced with small examples daily. That’s the best way to remember them.</p>
<h3>2. Comparison Operators</h3>
<p>Comparison operators help you compare two values. They return either <strong>True</strong> or <strong>False</strong>.</p>
<table>
<thead>
<tr>
<th>Operator</th>
<th>Meaning</th>
<th>Example</th>
</tr>
</thead>
<tbody>
<tr>
<td>==</td>
<td>Equal to</td>
<td>5 == 5 → True</td>
</tr>
<tr>
<td>!=</td>
<td>Not equal to</td>
<td>5 != 3 → True</td>
</tr>
<tr>
<td>&gt;</td>
<td>Greater than</td>
<td>7 &gt; 5 → True</td>
</tr>
<tr>
<td>&lt;</td>
<td>Less than</td>
<td>3 &lt; 8 → True</td>
</tr>
<tr>
<td>&gt;=</td>
<td>Greater or equal to</td>
<td>5 &gt;= 5 → True</td>
</tr>
<tr>
<td>&lt;=</td>
<td>Less or equal to</td>
<td>4 &lt;= 6 → True</td>
</tr>
</tbody>
</table>
<p>I often use these in <strong>if-else</strong> statements to control the flow of a program.</p>
<h3>3. Logical Operators</h3>
<p>These operators are used to combine conditions.</p>
<table>
<thead>
<tr>
<th>Operator</th>
<th>Description</th>
<th>Example</th>
</tr>
</thead>
<tbody>
<tr>
<td>and</td>
<td>Returns True if both conditions are True</td>
<td>(5 &gt; 2 and 3 &lt; 6) → True</td>
</tr>
<tr>
<td>or</td>
<td>Returns True if any condition is True</td>
<td>(5 &lt; 2 or 3 &lt; 6) → True</td>
</tr>
<tr>
<td>not</td>
<td>Reverses the result</td>
<td>not(5 &gt; 2) → False</td>
</tr>
</tbody>
</table>
<h3>4. Assignment Operators</h3>
<p>Used to assign values to variables.</p>
<table>
<thead>
<tr>
<th>Operator</th>
<th>Example</th>
<th>Same As</th>
</tr>
</thead>
<tbody>
<tr>
<td>=</td>
<td>x = 5</td>
<td>Assign value 5 to x</td>
</tr>
<tr>
<td>+=</td>
<td>x += 3</td>
<td>x = x + 3</td>
</tr>
<tr>
<td>-=</td>
<td>x -= 3</td>
<td>x = x &#8211; 3</td>
</tr>
<tr>
<td>*=</td>
<td>x *= 3</td>
<td>x = x * 3</td>
</tr>
<tr>
<td>/=</td>
<td>x /= 3</td>
<td>x = x / 3</td>
</tr>
</tbody>
</table>
<h3>5. Bitwise Operators</h3>
<p>Bitwise operators work with bits (0s and 1s). You’ll use them rarely, but they’re important in advanced programming.</p>
<ul>
<li><code>&amp;</code> – AND</li>
<li><code>|</code> – OR</li>
<li><code>^</code> – XOR</li>
<li><code>~</code> – NOT</li>
<li><code>&lt;&lt;</code> – Left shift</li>
<li><code>&gt;&gt;</code> – Right shift</li>
</ul>
<h3>6. Membership Operators</h3>
<p>Used to check if a value exists in a sequence (like a list or string).</p>
<table>
<thead>
<tr>
<th>Operator</th>
<th>Example</th>
<th>Result</th>
</tr>
</thead>
<tbody>
<tr>
<td>in</td>
<td>&#8216;a&#8217; in &#8216;apple&#8217;</td>
<td>True</td>
</tr>
<tr>
<td>not in</td>
<td>&#8216;b&#8217; not in &#8216;apple&#8217;</td>
<td>True</td>
</tr>
</tbody>
</table>
<p>I use this often while checking if a user input exists in a list.</p>
<h3>7. Identity Operators</h3>
<p>Used to check if two variables point to the same object in memory.</p>
<table>
<thead>
<tr>
<th>Operator</th>
<th>Example</th>
<th>Result</th>
</tr>
</thead>
<tbody>
<tr>
<td>is</td>
<td>x is y</td>
<td>True if same object</td>
</tr>
<tr>
<td>is not</td>
<td>x is not y</td>
<td>True if different objects</td>
</tr>
</tbody>
</table>
</section>
<section>
<h2>Why Are Python Operators Important?</h2>
<p>Without operators, coding would be like trying to write sentences without verbs. They make your code perform actions, calculate values, and make decisions. If you want to become a good Python programmer, you must understand them well.</p>
</section>
<section>
<h2>My Personal Tip</h2>
<p>When I was learning Python, I created a small “operator notebook.” Every time I learned a new operator, I’d note its example and output. Within a week, I could use all of them without looking up Google. Try doing the same — it works wonders!</p>
</section>
<section>
<h2>Conclusion</h2>
<p>So that’s a complete and simple guide on <strong>Python operators</strong>. You’ve now learned what they are, their types, and how to use them in real Python code.</p>
<p>Keep practicing small examples every day, and soon you’ll find operators easy and fun to use. If you’re serious about mastering Python, this is one of the best starting points.</p>
</section>
<footer><strong>Primary Keywords:</strong> Python operators, types of Python operators, Python tutorial, learn Python for beginners, Python basics<strong>Secondary Keywords:</strong> arithmetic operators in python, comparison operators, logical operators, python examples, how to use python operators</footer>
</article>
<p>The post <a href="https://azadchouhan.online/python/python-operators-explained-simply-a-complete-beginners-guide/">Python Operators Explained Simply: A Complete Beginner’s Guide</a> appeared first on <a href="https://azadchouhan.online">Azad Chouhan</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://azadchouhan.online/python/python-operators-explained-simply-a-complete-beginners-guide/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Understanding Python Variables and Data Types — A Beginner-Friendly Guide</title>
		<link>https://azadchouhan.online/python/understanding-python-variables-and-data-types-a-beginner-friendly-guide/</link>
					<comments>https://azadchouhan.online/python/understanding-python-variables-and-data-types-a-beginner-friendly-guide/#respond</comments>
		
		<dc:creator><![CDATA[azad chouhan]]></dc:creator>
		<pubDate>Sun, 12 Oct 2025 16:57:09 +0000</pubDate>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[learn Python programming]]></category>
		<category><![CDATA[Python basics]]></category>
		<category><![CDATA[Python data types]]></category>
		<category><![CDATA[Python tutorial for beginners]]></category>
		<category><![CDATA[Python variables]]></category>
		<guid isPermaLink="false">https://azadchouhan.online/?p=1177</guid>

					<description><![CDATA[<p>Learn Python variables and data types in simple words. A beginner-friendly guide to understanding how Python stores and manages data.</p>
<p>The post <a href="https://azadchouhan.online/python/understanding-python-variables-and-data-types-a-beginner-friendly-guide/">Understanding Python Variables and Data Types — A Beginner-Friendly Guide</a> appeared first on <a href="https://azadchouhan.online">Azad Chouhan</a>.</p>
]]></description>
										<content:encoded><![CDATA[<article>If you are new to programming, Python is a great place to start. Before writing bigger programs, you should learn two basic ideas: <strong>variables</strong> and <strong>data types</strong>. This guide explains both in simple language so you can begin coding with confidence.</p>
<h2>What is a Variable in Python?</h2>
<p>A variable is like a labeled box that holds information. You give the box a name and put a value inside it. For example:</p>
<pre><code>name = "John"
age = 25</code></pre>
<p>Here, <code>name</code> holds text (a string) and <code>age</code> holds a number (an integer). In Python you do not have to tell the language the type — Python figures it out. This feature is called <strong>dynamically typed</strong>.</p>
<h2>Simple Rules for Naming Variables</h2>
<ul>
<li>Start with a letter or underscore (_).</li>
<li>Do not start with a number.</li>
<li>Use only letters, numbers, and underscores.</li>
<li>Names are case-sensitive: <code>Name</code> and <code>name</code> are different.</li>
</ul>
<div class="note"><strong>Tip:</strong> Use clear names like <code>user_name</code> or <code>total_price</code> so your code is easy to read.</div>
<h2>Common Python Data Types (with examples)</h2>
<p>Python has several built-in data types. Below are the most common ones you will use as a beginner.</p>
<h3>1. Numbers (int, float, complex)</h3>
<p><strong>int</strong> is for whole numbers, <strong>float</strong> is for decimals, and <strong>complex</strong> is for complex numbers.</p>
<pre><code>x = 5
y = 3.14
z = 2 + 3j</code></pre>
<h3>2. Strings (str)</h3>
<p>Strings hold text and are placed inside quotes. You can use single or double quotes:</p>
<pre><code>message = 'Hello, Python'
name = "Alice"</code></pre>
<h3>3. Boolean (bool)</h3>
<p>Boolean values are <code>True</code> or <code>False</code>. They are useful for decisions in code.</p>
<pre><code>is_active = True</code></pre>
<h3>4. List</h3>
<p>A list stores multiple items in order. Lists are changeable (mutable).</p>
<pre><code>fruits = ["apple", "banana", "cherry"]</code></pre>
<h3>5. Tuple</h3>
<p>A tuple is like a list but cannot be changed (immutable).</p>
<pre><code>coords = (10, 20)</code></pre>
<h3>6. Dictionary (dict)</h3>
<p>Dictionaries store data as key-value pairs. This is useful when you want to look up values by name.</p>
<pre><code>student = {"name": "John", "age": 21}</code></pre>
<h3>7. Set</h3>
<p>A set is an unordered collection of unique items. Duplicates are removed automatically.</p>
<pre><code>numbers = {1, 2, 3, 3}  # becomes {1,2,3}</code></pre>
<h2>Check a Variable&#8217;s Type</h2>
<p>Use the <code>type()</code> function to see what type a variable holds:</p>
<pre><code>x = 5
print(type(x))  # &gt; &lt;class 'int'&gt;</code></pre>
<h2>Why Data Types Matter</h2>
<p>Data types help you avoid errors. For example, you cannot add text and numbers directly:</p>
<pre><code>age = 25
print("I am " + age)  # This will cause an error</code></pre>
<p>Convert the number to a string first:</p>
<pre><code>print("I am " + str(age))</code></pre>
<h2>Quick Reference Table</h2>
<table>
<thead>
<tr>
<th>Data Type</th>
<th>Example</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>int</td>
<td>10</td>
<td>Whole number</td>
</tr>
<tr>
<td>float</td>
<td>3.14</td>
<td>Decimal number</td>
</tr>
<tr>
<td>str</td>
<td>&#8220;Hello&#8221;</td>
<td>Text</td>
</tr>
<tr>
<td>bool</td>
<td>True</td>
<td>True or False</td>
</tr>
<tr>
<td>list</td>
<td>[1,2,3]</td>
<td>Ordered, changeable collection</td>
</tr>
<tr>
<td>tuple</td>
<td>(1,2,3)</td>
<td>Ordered, fixed collection</td>
</tr>
<tr>
<td>dict</td>
<td>{&#8220;a&#8221;:1}</td>
<td>Key-value pairs</td>
</tr>
<tr>
<td>set</td>
<td>{1,2,3}</td>
<td>Unique items</td>
</tr>
</tbody>
</table>
<h2>Conclusion</h2>
<p>Variables and data types are the foundation of Python programming. Practice by creating different variables and trying small examples. Over time, understanding these basics will make building larger programs much easier.</p>
</article>
<p>The post <a href="https://azadchouhan.online/python/understanding-python-variables-and-data-types-a-beginner-friendly-guide/">Understanding Python Variables and Data Types — A Beginner-Friendly Guide</a> appeared first on <a href="https://azadchouhan.online">Azad Chouhan</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://azadchouhan.online/python/understanding-python-variables-and-data-types-a-beginner-friendly-guide/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
