<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: 0R1</title>
    <description>The latest articles on DEV Community by 0R1 (@or1sensei).</description>
    <link>https://dev.to/or1sensei</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F591378%2F49fa3954-2d36-4ac9-995a-61dd72c3bdfb.png</url>
      <title>DEV Community: 0R1</title>
      <link>https://dev.to/or1sensei</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/or1sensei"/>
    <language>en</language>
    <item>
      <title>RECURSION</title>
      <dc:creator>0R1</dc:creator>
      <pubDate>Mon, 16 Aug 2021 11:41:45 +0000</pubDate>
      <link>https://dev.to/or1sensei/recursion-3bf</link>
      <guid>https://dev.to/or1sensei/recursion-3bf</guid>
      <description>&lt;p&gt;Hello Good Day! just wanted to ask something about about recursion using python, what's the difference between having a return on recursive function and not just like this.&lt;/p&gt;

&lt;p&gt;with return on recursive fucntion.&lt;br&gt;
def fib(n):&lt;br&gt;
  if n == 0:&lt;br&gt;
    return 1&lt;br&gt;
  else:&lt;br&gt;
    return n * fib(n-1)&lt;/p&gt;

&lt;p&gt;without return on recursive function&lt;br&gt;
def n_to_1(n):&lt;br&gt;
  if n == 0:&lt;br&gt;
    return&lt;br&gt;
  else:&lt;br&gt;
    print(n)&lt;br&gt;
    n_to_1(n-1)&lt;/p&gt;

</description>
      <category>python</category>
      <category>return</category>
      <category>recursive</category>
    </item>
    <item>
      <title>Computer Engineering!</title>
      <dc:creator>0R1</dc:creator>
      <pubDate>Sun, 07 Mar 2021 14:01:50 +0000</pubDate>
      <link>https://dev.to/or1sensei/computer-engineering-3pfi</link>
      <guid>https://dev.to/or1sensei/computer-engineering-3pfi</guid>
      <description>&lt;p&gt;Hello There!, I'm a newbie here and just want to here from your side about of what my concern's all about, I'm currently studying python language as my main language to be career in the near future and is it okay that language I've choosen to be as an Computer Engineering student? I'm planning to be an DevOps Engineer, so could you guys suggest anything that will for my career, like paths and etc.&lt;/p&gt;

</description>
      <category>python</category>
    </item>
  </channel>
</rss>
