<?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: Vishal J</title>
    <description>The latest articles on DEV Community by Vishal J (@vishal-johnnelson).</description>
    <link>https://dev.to/vishal-johnnelson</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%2F1748010%2Ffa3d6c5b-c5d5-42ab-85d7-bace0f4a2b35.jpg</url>
      <title>DEV Community: Vishal J</title>
      <link>https://dev.to/vishal-johnnelson</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/vishal-johnnelson"/>
    <language>en</language>
    <item>
      <title>July 10, 2024 Python | DataTypes, Variables, Constants</title>
      <dc:creator>Vishal J</dc:creator>
      <pubDate>Mon, 26 Aug 2024 06:37:22 +0000</pubDate>
      <link>https://dev.to/vishal-johnnelson/july-10-2024-python-datatypes-variables-constants-4ggn</link>
      <guid>https://dev.to/vishal-johnnelson/july-10-2024-python-datatypes-variables-constants-4ggn</guid>
      <description>&lt;p&gt;This is a series of Python learning blog from &lt;a href="https://parottasalna.com/" rel="noopener noreferrer"&gt;parottosalna&lt;/a&gt; community by &lt;a href="https://kaniyam.com/" rel="noopener noreferrer"&gt;kaniyam foundation&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This blog is based on this video &lt;a href="https://youtu.be/5G0PoJofxXk?list=PLiutOxBS1Mizte0ehfMrRKHSIQcCImwHL" rel="noopener noreferrer"&gt;Python | DataTypes, Variables, Constants | ParottaSalna&lt;/a&gt;"&lt;/p&gt;

&lt;p&gt;To watch the full series check this &lt;a href="https://youtube.com/playlist?list=PLiutOxBS1Mizte0ehfMrRKHSIQcCImwHL&amp;amp;si=2TOcYpgtq9tyxThG" rel="noopener noreferrer"&gt;youtube playlist&lt;/a&gt;&lt;/p&gt;

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

&lt;ol&gt;
&lt;li&gt;Datatypes&lt;/li&gt;
&lt;li&gt;Variables&lt;/li&gt;
&lt;li&gt;Constants&lt;/li&gt;
&lt;li&gt;General Notes&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Datatypes:
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;3 Types of Datatypes&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Numeric

&lt;ol&gt;
&lt;li&gt;Integer&lt;/li&gt;
&lt;li&gt;Float / Decimal number&lt;/li&gt;
&lt;li&gt;Constants&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;Text&lt;/li&gt;
&lt;li&gt;Boolean Types

&lt;ul&gt;
&lt;li&gt;True, False, None&lt;/li&gt;
&lt;li&gt;Examples:

&lt;ul&gt;
&lt;li&gt;is_active = true&lt;/li&gt;
&lt;li&gt;no_of_apples = none&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

&lt;/li&gt;

&lt;/ol&gt;

&lt;/li&gt;

&lt;li&gt;&lt;p&gt;Command to check the input type &lt;code&gt;type(26)&lt;/code&gt; , Output will be &lt;code&gt;int&lt;/code&gt; datatype&lt;/p&gt;&lt;/li&gt;

&lt;li&gt;&lt;p&gt;Everything in Python Language is "Object"&lt;/p&gt;&lt;/li&gt;

&lt;li&gt;&lt;p&gt;Command to see functionalities of a Object &lt;code&gt;dir(26)&lt;/code&gt; , Output show the available functionalities as a list.&lt;/p&gt;&lt;/li&gt;

&lt;li&gt;&lt;p&gt;&lt;code&gt;str&lt;/code&gt; is the short form of String.&lt;/p&gt;&lt;/li&gt;

&lt;li&gt;

&lt;p&gt;Addition of Strings&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;"Vishal" + "J"&lt;/code&gt; , The Output will be &lt;code&gt;VishalJ&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

&lt;h2&gt;
  
  
  Variables:
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Variable is a container to hold the values. And Variables will refer to Object / Value / Data.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;There are some regulations in variable writing&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;No symbol in-between&lt;/li&gt;
&lt;li&gt;Only start with Characters.&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Command for Multiple assignment&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;name, age = "Vishal", 20&lt;/code&gt;

&lt;ul&gt;
&lt;li&gt;Here is a example of tuple data type&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

&lt;/li&gt;

&lt;li&gt;

&lt;p&gt;Command to print the datatype in a program&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;code&gt;print(type(name))&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;&lt;p&gt;Running inspect - terminal option in browser to use JavaScript program&lt;/p&gt;&lt;/li&gt;

&lt;li&gt;

&lt;p&gt;Commenting is useful to denote what is going in a program&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;To comment single line &lt;code&gt;#&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;To comment multiple lines &lt;code&gt;"""Hello world """&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

&lt;h2&gt;
  
  
  Constants:
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Types of Constants styles&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;PascalCase&lt;/li&gt;
&lt;li&gt;Camelcase&lt;/li&gt;
&lt;li&gt;snake_case&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Google Colab uses Jupiter notebook and into include automatic feature to print texts without print function&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Book recommendation&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Byte of Python&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;&lt;p&gt;Quiz's and Tasks for Practising&lt;/p&gt;&lt;/li&gt;

&lt;li&gt;

&lt;p&gt;File handling commands&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Command to create a new file "file.txt" in F folder with program of print("Some content")

&lt;ul&gt;
&lt;li&gt;&lt;code&gt;with open("file.txt", "w") as f: print("some content", file=f)&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

&lt;/li&gt;

&lt;li&gt;

&lt;p&gt;Concatenate make to add two strings as metioned in above before&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;print("Hello" + " World"&lt;/code&gt; , the Output will be &lt;code&gt;Hello World&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;print("Hello" , "World")&lt;/code&gt; , The Output will be &lt;code&gt;Hello World&lt;/code&gt; . Here the the &lt;code&gt;,&lt;/code&gt; symbol will add some space between the words.&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

&lt;h2&gt;
  
  
  General Notes
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;By using Books you can use to self study and to advance&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Note: We can paste images in Zoom chat option&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;To learn JavaScript one must have to know HTML&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Forums to ask questions&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Stack overflow&lt;/li&gt;
&lt;li&gt;Chennai mailing list&lt;/li&gt;
&lt;li&gt;Tamil Linux Community&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;/ul&gt;

</description>
    </item>
    <item>
      <title>July 9, 2024 Print() Python (Q/A) - Part 2</title>
      <dc:creator>Vishal J</dc:creator>
      <pubDate>Sat, 17 Aug 2024 06:24:46 +0000</pubDate>
      <link>https://dev.to/vishal-johnnelson/july-9-2024-print-python-qa-part-2-11n3</link>
      <guid>https://dev.to/vishal-johnnelson/july-9-2024-print-python-qa-part-2-11n3</guid>
      <description>&lt;p&gt;This is a series of Python learning blog from &lt;a href="https://parottasalna.com/" rel="noopener noreferrer"&gt;parottosalna&lt;/a&gt; community by &lt;a href="https://kaniyam.com/" rel="noopener noreferrer"&gt;kaniyam foundation&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This blog is based on this video "Print() Python (Q/A) | ParottaSalna - Part 2](&lt;a href="https://youtu.be/OWjW7GBMND4?list=PLiutOxBS1Mizte0ehfMrRKHSIQcCImwHL)" rel="noopener noreferrer"&gt;https://youtu.be/OWjW7GBMND4?list=PLiutOxBS1Mizte0ehfMrRKHSIQcCImwHL)&lt;/a&gt;"&lt;/p&gt;

&lt;p&gt;To watch the full series check this &lt;a href="https://youtube.com/playlist?list=PLiutOxBS1Mizte0ehfMrRKHSIQcCImwHL&amp;amp;si=2TOcYpgtq9tyxThG" rel="noopener noreferrer"&gt;youtube playlist&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Contents:&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Websites to learn programming for beginners&lt;/li&gt;
&lt;li&gt;Python installation in windows&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;Websites to learn programming for beginners&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;a href="https://code.org/" rel="noopener noreferrer"&gt;https://code.org/&lt;/a&gt;&lt;br&gt;
&lt;a href="https://scratch.mit.edu/" rel="noopener noreferrer"&gt;https://scratch.mit.edu/&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;To use python in windows&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Install the python .exe file and select the option "Add python to environment variables"&lt;/li&gt;
&lt;li&gt;Create python file in text editor and save it in a folder&lt;/li&gt;
&lt;li&gt;Go to the file location in the windows explorer and in the location path enter cmd to open the file path in terminal&lt;/li&gt;
&lt;li&gt;In terminal to execute the python program enter &lt;code&gt;python &amp;lt;file name&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;To check the available file in the folder enter &lt;code&gt;dir&lt;/code&gt;
&lt;/li&gt;
&lt;/ol&gt;

</description>
    </item>
    <item>
      <title>July 9, 2024 Print() - Part 1</title>
      <dc:creator>Vishal J</dc:creator>
      <pubDate>Mon, 12 Aug 2024 10:42:47 +0000</pubDate>
      <link>https://dev.to/vishal-johnnelson/july-9-2024-print-part-1-1ngd</link>
      <guid>https://dev.to/vishal-johnnelson/july-9-2024-print-part-1-1ngd</guid>
      <description>&lt;p&gt;Contents:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;About print function and its arguments

&lt;ul&gt;
&lt;li&gt;Sep argument &lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;Different types of print formats&lt;/li&gt;

&lt;li&gt;Using escape sequences with print function&lt;/li&gt;

&lt;li&gt;Rasting - To insert file path&lt;/li&gt;

&lt;li&gt;Typecasting - To change data format to another format&lt;/li&gt;

&lt;li&gt;Learnt about how to print multi line string&lt;/li&gt;

&lt;li&gt;Sting Multiplication&lt;/li&gt;

&lt;li&gt;Different methods of print formats like F String&lt;/li&gt;

&lt;li&gt;To see the different methods for a function by using dir command before a function&lt;/li&gt;

&lt;li&gt;&lt;p&gt;Usages of print function&lt;/p&gt;&lt;/li&gt;

&lt;li&gt;

&lt;p&gt;`print("")&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;This is call as print function&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;

&lt;p&gt;Different cases with &lt;code&gt;print()&lt;/code&gt; function&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;print("Hello", "World") \Seperator

&lt;ul&gt;
&lt;li&gt;Output: Hello World

&lt;ul&gt;
&lt;li&gt;There is a space between two words due to default &lt;strong&gt;sep&lt;/strong&gt; argument&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

&lt;/li&gt;

&lt;li&gt;

&lt;code&gt;print("Hello", "World", sep="-")&lt;/code&gt; 

&lt;ul&gt;
&lt;li&gt;Output: Hello-World&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;

&lt;code&gt;print("Hello", "World", sep="\n")&lt;/code&gt; \ Enter or new line

&lt;ul&gt;
&lt;li&gt;Output:  Hello
     World&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;

&lt;code&gt;print("Hello", "World", sep="\t")&lt;/code&gt; \Tab

&lt;ul&gt;
&lt;li&gt;Output:  Hello    World&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

&lt;/li&gt;

&lt;/ul&gt;

&lt;p&gt;Cancatinating string&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;In Python language, every thing is consider as objects, every object has special functionalities.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;print("Hello" + " World" + "Welcome" + " To Python Class")&lt;/code&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Output: Hello WorldWelcome to Python  Class&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;

&lt;p&gt;&lt;code&gt;print("Hello", "World", end="?"&lt;/code&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Output: Hello World?&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

&lt;p&gt;Ecape Sequence&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;For print pattern

&lt;ul&gt;
&lt;li&gt;&lt;code&gt;print("#\n##\n###\n#####")&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;output:
&lt;code&gt;&lt;/code&gt;&lt;code&gt;
# 
##
###
####
&lt;/code&gt;&lt;code&gt;&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;Some Escape sequences

&lt;ul&gt;
&lt;li&gt;&lt;code&gt;\n&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;\t&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

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

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;To inset print native file path&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;print(r"C:\users/syedajafer/document")&lt;/code&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Output: C:\users/syedajafer/document&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;&lt;p&gt;Insert double quatation the value will be in string&lt;/p&gt;&lt;/li&gt;

&lt;/ul&gt;

&lt;p&gt;Type casting&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;print("abc" + str(123))&lt;/code&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Output: abc123&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;

&lt;p&gt;To add Quatations in a string&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;print(' "Hello world"')&lt;/code&gt;

&lt;ul&gt;
&lt;li&gt;Output: "Hello world"&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;

&lt;code&gt;print(" 'Hello world' ")&lt;/code&gt;

&lt;ul&gt;
&lt;li&gt;Output: 'Hello world'&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

&lt;/li&gt;

&lt;/ul&gt;

&lt;p&gt;Multi line string&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;To print as paragraph
&lt;code&gt;&lt;/code&gt;&lt;code&gt;
print("""
My Name 
is Vishal.
How are you?
What is your name?
""")
&lt;/code&gt;&lt;code&gt;&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Output:
My Name 
is Vishal.
How are you?
What is your name?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;String Multiplication&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;print("Hello" * 3)&lt;/code&gt;

&lt;ul&gt;
&lt;li&gt;Output: HelloHelloHello&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;

&lt;code&gt;print("Hello" * 3 *2)&lt;/code&gt;

&lt;ul&gt;
&lt;li&gt;Output: HelloHelloHelloHelloHelloHello&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

&lt;h2&gt;
  
  
  Format
&lt;/h2&gt;

&lt;p&gt;&lt;code&gt;&lt;/code&gt;`&lt;br&gt;
name = "abc"&lt;br&gt;
age = 25&lt;br&gt;
print("Name: {}, Age:{}".format(name, age))&lt;/p&gt;

&lt;p&gt;Output:&lt;br&gt;
Name: abc, Age: 25&lt;br&gt;
`&lt;code&gt;&lt;/code&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;&lt;/code&gt;&lt;code&gt;
print("Name: {name}, Age: {age}" .format(name="abc", age=25))&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Output: Name: abc, Age: 25&lt;br&gt;
`&lt;code&gt;&lt;/code&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;&lt;/code&gt;`
print("Name: {name}, Age: {age}" .format(name=["abc"], age=25)) &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Output: Name: ['abc'], Age: 25&lt;br&gt;
Note: It will also print the strings in list data Structure &lt;br&gt;
`&lt;code&gt;&lt;/code&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;F string
&lt;code&gt;&lt;/code&gt;`
name = "Syed"
age = 26
print(f"Name: {name}, Age: {age}")&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Output: Name: Syed, Age: 26&lt;br&gt;
`&lt;code&gt;&lt;/code&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;"Hello World" * 2&lt;/code&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Output: Hello WorldHello World&lt;/li&gt;
&lt;li&gt;Use can use printfunction without print function syntax&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;&lt;p&gt;To see available methods for a function use dir&lt;/p&gt;&lt;/li&gt;

&lt;/ul&gt;

&lt;p&gt;Usages of print() function&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;software development while debugging by checking what is the result at each stages&lt;/li&gt;
&lt;li&gt;While going to production, they remove print function and insert log key&lt;/li&gt;
&lt;li&gt;Desktop application to print the status&lt;/li&gt;
&lt;/ul&gt;

</description>
    </item>
    <item>
      <title>How to write a blog in dev.to and wordpress ?</title>
      <dc:creator>Vishal J</dc:creator>
      <pubDate>Thu, 08 Aug 2024 10:02:32 +0000</pubDate>
      <link>https://dev.to/vishal-johnnelson/how-to-write-a-blog-in-devto-and-wordpress--44lo</link>
      <guid>https://dev.to/vishal-johnnelson/how-to-write-a-blog-in-devto-and-wordpress--44lo</guid>
      <description>&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Blog post through dev.to&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Create account and start blogging&lt;/li&gt;
&lt;/ol&gt;


&lt;/li&gt;

&lt;li&gt;

&lt;p&gt;Blog post through wordpress&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Create account&lt;/li&gt;
&lt;li&gt;Choose wordpress package with free version to create blog and start blogging&lt;/li&gt;
&lt;/ol&gt;


&lt;/li&gt;

&lt;/ol&gt;

</description>
    </item>
    <item>
      <title>July 8, 2024 Python Meet &amp; Greet - Part 2</title>
      <dc:creator>Vishal J</dc:creator>
      <pubDate>Thu, 08 Aug 2024 09:57:39 +0000</pubDate>
      <link>https://dev.to/vishal-johnnelson/july-8-2024-python-meet-greet-part-2-pa3</link>
      <guid>https://dev.to/vishal-johnnelson/july-8-2024-python-meet-greet-part-2-pa3</guid>
      <description>&lt;p&gt;This is a series of Python learning blog from &lt;a href="https://parottasalna.com/" rel="noopener noreferrer"&gt;parottosalna&lt;/a&gt; community by &lt;a href="https://kaniyam.com/" rel="noopener noreferrer"&gt;kaniyam foundation&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This blog is based on this video "&lt;a href="https://youtu.be/xBpXOkyoFD8?list=PLiutOxBS1Mizte0ehfMrRKHSIQcCImwHL" rel="noopener noreferrer"&gt;Python Meet &amp;amp; Greet - Part 2 | Parotta Salna&lt;/a&gt;" - Day 1 of Python learning Introduction class&lt;/p&gt;

&lt;p&gt;To watch the full series check this &lt;a href="https://youtube.com/playlist?list=PLiutOxBS1Mizte0ehfMrRKHSIQcCImwHL&amp;amp;si=2TOcYpgtq9tyxThG" rel="noopener noreferrer"&gt;youtube playlist&lt;/a&gt;&lt;/p&gt;

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

&lt;ol&gt;
&lt;li&gt;Introduction to Python Program&lt;/li&gt;
&lt;li&gt;About Linux user groups and their activites in Tamilnadu&lt;/li&gt;
&lt;li&gt;Contact numbers and links&lt;/li&gt;
&lt;li&gt;Forum questions asking methods&lt;/li&gt;
&lt;li&gt;Today Tasks&lt;/li&gt;
&lt;/ol&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Linux groups and meetups in tamilnadu&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Kanchi linux user group

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://kanchilug.wordpress.com/" rel="noopener noreferrer"&gt;https://kanchilug.wordpress.com/&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Every week online meeting and discuss about tech and linux updates&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;FSHM  - Pondicheery

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.fshm.org/" rel="noopener noreferrer"&gt;https://www.fshm.org/&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;Chennaipy - Chennai

&lt;ul&gt;
&lt;li&gt;Monthly meetup&lt;/li&gt;
&lt;li&gt;having Mailing list&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

&lt;/li&gt;

&lt;li&gt;&lt;p&gt;To get updates for the linux meetups you can check the kaniyam.com website calender&lt;/p&gt;&lt;/li&gt;

&lt;li&gt;&lt;p&gt;The know for meetups check for &lt;a href="https://www.meetup.com/" rel="noopener noreferrer"&gt;meetup.com&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;

&lt;li&gt;&lt;p&gt;These groups are volunteer group for knowledge sharing&lt;/p&gt;&lt;/li&gt;

&lt;li&gt;&lt;p&gt;GNU Linux&lt;/p&gt;&lt;/li&gt;

&lt;li&gt;&lt;p&gt;Windows or Mac are properaty software&lt;/p&gt;&lt;/li&gt;

&lt;li&gt;&lt;p&gt;Linux is made by the people for the people &lt;/p&gt;&lt;/li&gt;

&lt;li&gt;&lt;p&gt;GNU image for alternative photoshop&lt;/p&gt;&lt;/li&gt;

&lt;li&gt;&lt;p&gt;The only thing is after modify the software, it should be reelase it with original license&lt;/p&gt;&lt;/li&gt;

&lt;li&gt;&lt;p&gt;&lt;a href="https://youtu.be/Nkg6iC3Ro9g" rel="noopener noreferrer"&gt;muthuramalingam tamil python&lt;/a&gt; - &lt;a href="https://www.youtube.com/@PayilagamChennai" rel="noopener noreferrer"&gt;Youtube channel&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;

&lt;li&gt;

&lt;p&gt;To eliminate Thayakkam &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;This is what i know, and I am sharing it with you&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;&lt;p&gt;By asking questions in forums you are creating a knowledge database&lt;/p&gt;&lt;/li&gt;

&lt;li&gt;&lt;p&gt;Ask questions in mailing list in chennaipy.org&lt;/p&gt;&lt;/li&gt;

&lt;li&gt;&lt;p&gt;By using tanglish you are not strong in either english or in tamil.&lt;/p&gt;&lt;/li&gt;

&lt;li&gt;

&lt;p&gt;Things to remember when asking question&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Don't ask your questions in one line&lt;/li&gt;
&lt;li&gt;If possible add error code&lt;/li&gt;
&lt;li&gt; If you have any question, always ask in public&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;&lt;p&gt;Programming is like cooking&lt;/p&gt;&lt;/li&gt;

&lt;li&gt;&lt;p&gt;UI/UX - Javascript or HTML or CSS&lt;/p&gt;&lt;/li&gt;

&lt;li&gt;&lt;p&gt;Srinivasan is using Ubuntu KDE distribution of Linux&lt;/p&gt;&lt;/li&gt;

&lt;li&gt;&lt;p&gt;Srinivasan's Phone number: 9841795468 &lt;/p&gt;&lt;/li&gt;

&lt;li&gt;&lt;p&gt;Dhanasekaran and Srinivasan is organising the class&lt;/p&gt;&lt;/li&gt;

&lt;li&gt;&lt;p&gt;Every week saturday teaching reactJS&lt;/p&gt;&lt;/li&gt;

&lt;li&gt;

&lt;p&gt;Today Exercise&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Install Python&lt;/li&gt;
&lt;li&gt;Login in colab&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;&lt;p&gt;&lt;a href="https://freetamilebooks.com/" rel="noopener noreferrer"&gt;Freetamilebook.com&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;

&lt;li&gt;

&lt;p&gt;python books&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://python.swaroopch.com/" rel="noopener noreferrer"&gt;Bytes of python&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;&lt;p&gt;Telegram link: &lt;a href="https://t.me/+2Q_uTW7j9xtkMmVl" rel="noopener noreferrer"&gt;&lt;/a&gt;&lt;a href="https://t.me/+2Q_uTW7j9xtkMmVl" rel="noopener noreferrer"&gt;https://t.me/+2Q_uTW7j9xtkMmVl&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;

&lt;/ul&gt;

</description>
      <category>python</category>
      <category>opensource</category>
      <category>webinar</category>
      <category>learning</category>
    </item>
    <item>
      <title>July 8, 2024 Python - Meet &amp; Greet - Part 1</title>
      <dc:creator>Vishal J</dc:creator>
      <pubDate>Thu, 08 Aug 2024 09:47:43 +0000</pubDate>
      <link>https://dev.to/vishal-johnnelson/july-8-2024-python-meet-greet-part-1-1ibi</link>
      <guid>https://dev.to/vishal-johnnelson/july-8-2024-python-meet-greet-part-1-1ibi</guid>
      <description>&lt;p&gt;This is a series of Python learning blog from &lt;a href="https://parottasalna.com/" rel="noopener noreferrer"&gt;parottosalna&lt;/a&gt; community by &lt;a href="https://kaniyam.com/" rel="noopener noreferrer"&gt;kaniyam foundation&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This blog is based on this video "&lt;a href="https://youtu.be/rcJRkt3odlw?list=PLiutOxBS1Mizte0ehfMrRKHSIQcCImwHL" rel="noopener noreferrer"&gt;Python - Meet &amp;amp; Greet - Part 1 | ParottaSalna&lt;/a&gt;" - Day 1 of Python learning Introduction class&lt;/p&gt;

&lt;p&gt;To watch the full series check this &lt;a href="https://youtube.com/playlist?list=PLiutOxBS1Mizte0ehfMrRKHSIQcCImwHL&amp;amp;si=2TOcYpgtq9tyxThG" rel="noopener noreferrer"&gt;youtube playlist&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Objectives:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Why Python ? &lt;/li&gt;
&lt;li&gt;Course Syllabus &lt;/li&gt;
&lt;li&gt;Python Installation - Windows, Linux &lt;/li&gt;
&lt;li&gt;Collab Notebook &lt;/li&gt;
&lt;li&gt;Where to see updates &amp;amp; recordings. &lt;/li&gt;
&lt;li&gt;Where to ask questions ? &lt;/li&gt;
&lt;li&gt;Our Expectations &lt;/li&gt;
&lt;li&gt;Basic Print Command&lt;/li&gt;
&lt;li&gt;About FOSS, FOSS Communities.&lt;/li&gt;
&lt;/ol&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Applications of Python language&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.python.org/about/apps/" rel="noopener noreferrer"&gt;https://www.python.org/about/apps/&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;

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

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://parottasalna.com/python-development/" rel="noopener noreferrer"&gt;https://parottasalna.com/python-development/&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Each concepts includes - Basic, Intermediate and Advanced&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;

&lt;p&gt;Resources provided the team&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Blog&lt;/li&gt;
&lt;li&gt;Infographic PDF with important concepts&lt;/li&gt;
&lt;li&gt;Quiz&lt;/li&gt;
&lt;li&gt;Task like exercises&lt;/li&gt;
&lt;/ol&gt;


&lt;/li&gt;

&lt;li&gt;&lt;p&gt;Learn -&amp;gt; Write blog -&amp;gt; Teach someone&lt;/p&gt;&lt;/li&gt;

&lt;li&gt;&lt;p&gt;python is open source&lt;/p&gt;&lt;/li&gt;

&lt;li&gt;

&lt;p&gt;Python Colab in google for temperavery&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Each program set is called cell&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;

&lt;p&gt;To ask questions&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Ask in Tamil linux forum&lt;/li&gt;
&lt;li&gt;Direct question in whatsup after class upto 2 hours&lt;/li&gt;
&lt;li&gt;Few minutes before the class&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;

&lt;p&gt;To check updates for class&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Check in Kaniyam website&lt;/li&gt;
&lt;li&gt;Check in python syllabus session&lt;/li&gt;
&lt;li&gt;Youtube channel live notification&lt;/li&gt;
&lt;li&gt;Direct message to mentors&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;

&lt;p&gt;To find answer for my question&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;First check in google search&lt;/li&gt;
&lt;li&gt;Then ask question&lt;/li&gt;
&lt;/ol&gt;


&lt;/li&gt;

&lt;li&gt;

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

&lt;ul&gt;
&lt;li&gt;To write blog notes after each classes&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;

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

&lt;ul&gt;
&lt;li&gt;Print command

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;print("")&lt;/code&gt; this the format of the print command&lt;/li&gt;
&lt;li&gt; To run the code &lt;code&gt;python print&lt;/code&gt; or &lt;code&gt;python print.py&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

&lt;/li&gt;

&lt;li&gt;&lt;p&gt;Python is ready install in linux, if not install it with &lt;code&gt;brew&lt;/code&gt; command&lt;/p&gt;&lt;/li&gt;

&lt;li&gt;&lt;p&gt;Mentor will use VScode and colob for teaching&lt;/p&gt;&lt;/li&gt;

&lt;li&gt;&lt;p&gt;Telegram link: &lt;a href="https://t.me/+2Q_uTW7j9xtkMmVl" rel="noopener noreferrer"&gt;&lt;/a&gt;&lt;a href="https://t.me/+2Q_uTW7j9xtkMmVl" rel="noopener noreferrer"&gt;https://t.me/+2Q_uTW7j9xtkMmVl&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;

&lt;/ul&gt;

</description>
      <category>python</category>
      <category>opensource</category>
      <category>learning</category>
    </item>
    <item>
      <title>15-07-2024 Day 4 Python learning</title>
      <dc:creator>Vishal J</dc:creator>
      <pubDate>Tue, 16 Jul 2024 05:40:21 +0000</pubDate>
      <link>https://dev.to/vishal-johnnelson/15-07-2024-day-4-python-learning-3go</link>
      <guid>https://dev.to/vishal-johnnelson/15-07-2024-day-4-python-learning-3go</guid>
      <description>&lt;p&gt;This is a series of Python learning blog from &lt;a href="https://parottasalna.com/" rel="noopener noreferrer"&gt;parottosalna&lt;/a&gt; community by &lt;a href="https://kaniyam.com/" rel="noopener noreferrer"&gt;kaniyam foundation&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This blog is based on this video &lt;a href="https://youtu.be/FxOye9CD_NI?list=PLiutOxBS1Mizte0ehfMrRKHSIQcCImwHL" rel="noopener noreferrer"&gt;Operators, Conditionals, Input | Python | ParottaSalna&lt;/a&gt;"&lt;/p&gt;

&lt;p&gt;To watch the full series check this &lt;a href="https://youtube.com/playlist?list=PLiutOxBS1Mizte0ehfMrRKHSIQcCImwHL&amp;amp;si=2TOcYpgtq9tyxThG" rel="noopener noreferrer"&gt;youtube playlist&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Colab Notebook &lt;a href="https://colab.research.google.com/drive/1pt0t51u7EM5uAHf_3uNUnbIqogd5Cv47?usp=sharing" rel="noopener noreferrer"&gt;link&lt;/a&gt; &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Creating a calculator&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;single division gives result in flat value&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;calculator include arithmetic operations like Addition, subtraction, division,&lt;br&gt;
modules - to find the remainder; modules have the symbol of percentage %&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;num1 = int(input("Enter Number 1"))&lt;br&gt;
mum2 = int(input("Enter Number 2"))&lt;br&gt;
result = num1+num2&lt;br&gt;
print("result is", result)&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
    </item>
  </channel>
</rss>
