<?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: jothilingam</title>
    <description>The latest articles on DEV Community by jothilingam (@jothilingam88).</description>
    <link>https://dev.to/jothilingam88</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%2F1749805%2Ffe5804ce-fa2f-472a-acaf-e3d46bc57da0.jpg</url>
      <title>DEV Community: jothilingam</title>
      <link>https://dev.to/jothilingam88</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/jothilingam88"/>
    <language>en</language>
    <item>
      <title>PRINT function in python</title>
      <dc:creator>jothilingam</dc:creator>
      <pubDate>Sat, 13 Jul 2024 06:48:32 +0000</pubDate>
      <link>https://dev.to/jothilingam88/print-function-in-python-35jj</link>
      <guid>https://dev.to/jothilingam88/print-function-in-python-35jj</guid>
      <description>&lt;p&gt;13-07-2024&lt;/p&gt;

&lt;h2&gt;
  
  
  PRINT() function
&lt;/h2&gt;

&lt;p&gt;&lt;code&gt;print()&lt;/code&gt; function is a function that allows us to output to the screen&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The print() function has three different uses;&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Single quotes (' ')
&lt;/li&gt;
&lt;li&gt;Double quotes (" ")&lt;/li&gt;
&lt;li&gt;Three quotes (“”” “””)-----------for multi line&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;em&gt;we can use anyone type quote, cannot use different quote in same line&lt;/em&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;print()---------------------------#create empty line
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;print("jothilingam")--------------#string should print with""
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;print(5)------------------------#number can print without ""
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;print("jo""jo")--------------print without space
print("jo"+"jo")--------------print without space
answer    jojo
print("jo","jo")--------------print with space
answer     jo jo
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;print with &lt;code&gt;f-strings&lt;/code&gt;&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;name = "jothi"
print(f"Hello {name}")
# Output : Hello jothi
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;newline escape character \n&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;print("jo\nthi")
jo
thi
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  &lt;strong&gt;Parameters of the print() Function:&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;&lt;code&gt;sep&lt;/code&gt;parameter&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;print("jo","jo",sep="_")...................sep="" is default
answer    jo_jo
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;print("jo", "lingam", sep='thi')
answer     jothilingam
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;&lt;code&gt;end&lt;/code&gt;parameter&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;print("jothi",end="lingam")
answer  jothilingam
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;print("jothi",end="")----------------without space
print("lingam")
answer  jothilingam
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;print("jothi",end=" ")----------------with space
print("lingam")
answer  jothi lingam
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;&lt;code&gt;*&lt;/code&gt; parameter&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;print(*"jothilingam")
answer    j o t h i l i n g a m
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;code&gt;file&lt;/code&gt;and &lt;code&gt;flush&lt;/code&gt;parameters, since these parameters are the parameters that allow us to process the files&lt;/p&gt;

</description>
      <category>python</category>
      <category>print</category>
      <category>jopy</category>
    </item>
    <item>
      <title>python code editors and links</title>
      <dc:creator>jothilingam</dc:creator>
      <pubDate>Tue, 09 Jul 2024 12:25:03 +0000</pubDate>
      <link>https://dev.to/jothilingam88/python-code-editors-and-links-1l02</link>
      <guid>https://dev.to/jothilingam88/python-code-editors-and-links-1l02</guid>
      <description>&lt;p&gt;&lt;strong&gt;09-07-2024&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Applications&lt;br&gt;
&lt;a href="https://www.python.org/downloads/" rel="noopener noreferrer"&gt;python IDE&lt;/a&gt;&lt;br&gt;
&lt;a href="https://www.jetbrains.com/pycharm/" rel="noopener noreferrer"&gt;pycharm&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;online editors&lt;br&gt;
&lt;a href="https://tonyedit.netlify.app/texteditor-py.html" rel="noopener noreferrer"&gt;tonyedit&lt;/a&gt;&lt;br&gt;
 &lt;a href="https://colab.research.google.com/notebook" rel="noopener noreferrer"&gt;google colab&lt;/a&gt;&lt;br&gt;
&lt;a href="https://onecompiler.com/python/42jtdw4v3" rel="noopener noreferrer"&gt;one comp&lt;/a&gt;&lt;br&gt;
&lt;a href="https://www.programiz.com/python-programming/online-compiler/" rel="noopener noreferrer"&gt;programiz&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://trinket.io/embed/python3/a5bd54189b" rel="noopener noreferrer"&gt;edit&lt;/a&gt;&lt;br&gt;
&lt;a href="https://masterpy.com/lesson-01-working-in-python-01.php" rel="noopener noreferrer"&gt;useful&lt;/a&gt;&lt;/p&gt;

</description>
      <category>python</category>
      <category>codeeditor</category>
      <category>jopy</category>
    </item>
    <item>
      <title>பைத்தானுடன் எனது அறிமுகம்</title>
      <dc:creator>jothilingam</dc:creator>
      <pubDate>Mon, 08 Jul 2024 21:42:12 +0000</pubDate>
      <link>https://dev.to/jothilingam88/paittaannnuttnnn-ennntu-arrimukm-3lpb</link>
      <guid>https://dev.to/jothilingam88/paittaannnuttnnn-ennntu-arrimukm-3lpb</guid>
      <description>&lt;p&gt;&lt;strong&gt;08-07-2027&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;வணக்கம் நண்பர்களே,&lt;/p&gt;

&lt;p&gt;நான் எந்த விதமான கணினி துறை சார்ந்தவனும் கிடையாது. ஆனாலும் எனக்கு வலை தளங்கள் வடிவமைப்பில் ஓர் ஆர்வம் வெகு நாளாக இருந்தது. இணைய தளங்கள் வழியாக கொஞ்சம் கற்றுக் கொண்டேன்.இதன் மூலம் கணினி நிரல் மொழி பற்றிய அடிப்படை அறிவினை சிறிது கற்று அறிமுகம் ஆகிக் கொண்டேன்.&lt;/p&gt;

&lt;p&gt;மேலும் தற்போது பங்குசந்தை வர்த்தகத்தில் ஈடுபட்டு வரும் நான் சில தானியங்கி செயல் முறைகளை உருவாக்க எண்ணம் கொண்டேன். அதற்கு பைத்தான் உதவும் என்பதையும் அறிந்து கொண்டேன். &lt;/p&gt;

&lt;p&gt;அதன் பின்பு பைத்தான் பயில்வது எப்படி என்பதை கற்க ஆரம்பித்தேன்.இந்த முயற்சியில் நான் அடைந்துள்ள இடம் தான் கணியம் அறக்கட்டளை. &lt;/p&gt;

&lt;p&gt;தமிழ் வழியில் தமிழர்களுக்காக எவ்வளவு பெரும் முயற்சியில்  தன்னார்வத்தோடு கணினி சார்ந்த அறிவை பரவலாக்க இத்தனை பேர் உழைத்துக் கொண்டிருக்கிறார்களா என்பதை அறிந்து வியக்கிறேன்.&lt;/p&gt;

&lt;p&gt;என்னாலும் இன்னும் யார் வேண்டுமானாலும் கணினி அறிவை கற்க மேம்படுத்த இந்த கணியன் 100% உதவும் என்பதை நினைந்து பெருமையோடு மகிழ்கிறேன்.&lt;/p&gt;

&lt;p&gt;வாழ்க தமிழ். &lt;br&gt;
வளர்க கணியம்.&lt;/p&gt;

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