<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Posts on Laysoft</title>
    <link>https://thispsj.eu.org/posts/</link>
    <description>Recent content in Posts on Laysoft</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>en-IN</language>
    <lastBuildDate>Sun, 24 Mar 2024 22:33:02 +0530</lastBuildDate><atom:link href="https://thispsj.eu.org/posts/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Python Looping</title>
      <link>https://thispsj.eu.org/posts/python-looping/</link>
      <pubDate>Sun, 24 Mar 2024 22:33:02 +0530</pubDate>
      
      <guid>https://thispsj.eu.org/posts/python-looping/</guid>
      <description>In the previous post, we covered conditional statements in Python. In this post, we will be covering various looping constructs in Python. Like conditional statements, statements within loops are also distinguished by Python based on indentation.
for loop A for loop is used to iterate over a fixed number of items (i.e., you (or at least the program) know(s) the number of items before entering into the loop). The for loop in Python can be used to iterate over any of the sequence data types which have an iterable method including strings (though they don&amp;rsquo;t have an iterable method).</description>
    </item>
    
    <item>
      <title>Conditional statements in Python</title>
      <link>https://thispsj.eu.org/posts/python-conditionals/</link>
      <pubDate>Sun, 24 Mar 2024 19:35:13 +0530</pubDate>
      
      <guid>https://thispsj.eu.org/posts/python-conditionals/</guid>
      <description>In one of the previous posts, we had explored the logical operators in Python. Logical operators alone cannot help much as they return only True or False. However, practically, logical operators are used in combination with conditional statements or looping statements. In this post, we would be exploring conditional statements in Python.
A note on indentation Going forward from here, Python interprets the statements within a conditional statement, looping statement or a function based on indentation.</description>
    </item>
    
    <item>
      <title>Key Math functions in Python</title>
      <link>https://thispsj.eu.org/posts/python-maths/</link>
      <pubDate>Sat, 23 Mar 2024 18:02:42 +0530</pubDate>
      
      <guid>https://thispsj.eu.org/posts/python-maths/</guid>
      <description>In an earlier post, we have learnt some of the basic mathematical operators in Python. In this post we will cover some of the key mathematical functions in Python which provide access to more mathematical operations in Python.
Built-in functions The following mathematical functions are built-in and can be accessed directly:
Function name Description abs(x) Returns the absolute value of a number (i.e., x). x may be an integer or a floating point number.</description>
    </item>
    
    <item>
      <title>Basic command line input and output in Python</title>
      <link>https://thispsj.eu.org/posts/python-basic-io/</link>
      <pubDate>Sun, 17 Mar 2024 16:08:50 +0530</pubDate>
      
      <guid>https://thispsj.eu.org/posts/python-basic-io/</guid>
      <description>In the previous posts, we have covered basic concepts in Python. Now, it&amp;rsquo;s time to see some basic input and output through the command line in Python.
Output in Python You&amp;rsquo;ve probably already learnt to print your output on the terminal by using the print() function. This section covers some further aspects of the print function and some basic formatting while printing output on the terminal.
Printing a blank line You can just use print() without any arguments when you want to print a blank line on the terminal for better visibility.</description>
    </item>
    
    <item>
      <title>Key Concepts in Python</title>
      <link>https://thispsj.eu.org/posts/python-key-concepts/</link>
      <pubDate>Sun, 10 Mar 2024 14:45:49 +0530</pubDate>
      
      <guid>https://thispsj.eu.org/posts/python-key-concepts/</guid>
      <description>In the previous post, we saw what is Python, how to install and wrote a basic Hello World program. This post aims to explain some key concepts in Python including variables, operators and data types.
Keywords Like any other programming language, Python also has certain keywords. Keywords are reserved words in a programming language which have a special meaning and cannot be used for user defined purposes such as naming variables, functions etc.</description>
    </item>
    
    <item>
      <title>Introduction to Python</title>
      <link>https://thispsj.eu.org/posts/introduction-to-python/</link>
      <pubDate>Sat, 02 Mar 2024 19:46:54 +0530</pubDate>
      
      <guid>https://thispsj.eu.org/posts/introduction-to-python/</guid>
      <description>Python is a high-level programming language which is popular among software developers and has wide range of applications. Some of the reasons of popularity of Python include easy readability, conciseness, does more in relatively less lines of code than other popular programming languages and flexibility. Nowadays Python is widely used in the field of Data Science and Artificial Intelligence (AI). Python was created by Guido van Rossum and first appeared publicly on 20 February 1991.</description>
    </item>
    
  </channel>
</rss>
