<?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: Jagadishwaran G</title>
    <description>The latest articles on DEV Community by Jagadishwaran G (@jagadishwaran_g_c1d0a2786).</description>
    <link>https://dev.to/jagadishwaran_g_c1d0a2786</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%2F1752741%2F8af4557a-9435-4678-91b8-781d3dd3041e.png</url>
      <title>DEV Community: Jagadishwaran G</title>
      <link>https://dev.to/jagadishwaran_g_c1d0a2786</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/jagadishwaran_g_c1d0a2786"/>
    <language>en</language>
    <item>
      <title>PYTHON – PRINT EXERCISES</title>
      <dc:creator>Jagadishwaran G</dc:creator>
      <pubDate>Wed, 10 Jul 2024 12:15:49 +0000</pubDate>
      <link>https://dev.to/jagadishwaran_g_c1d0a2786/task-1-34o1</link>
      <guid>https://dev.to/jagadishwaran_g_c1d0a2786/task-1-34o1</guid>
      <description>&lt;h1&gt;
  
  
  How do you print the string “Hello, world!” to the screen?
&lt;/h1&gt;

&lt;p&gt;print("Hello World")&lt;/p&gt;

&lt;h1&gt;
  
  
  How do you print the value of a variable name which is set to “Syed Jafer” or Your name?
&lt;/h1&gt;

&lt;p&gt;name ="Jagadish"&lt;br&gt;
print(name)&lt;/p&gt;

&lt;h1&gt;
  
  
  How do you print the variables name, age, and city with labels “Name:”, “Age:”, and “City:”?
&lt;/h1&gt;

&lt;p&gt;name = "Tom"&lt;br&gt;
age=25&lt;br&gt;
city = "Chennai"&lt;/p&gt;

&lt;p&gt;print("My name is {}, and my age is {}, Currently leaveing in City is {}".format(name, age, city))&lt;/p&gt;

&lt;h1&gt;
  
  
  How do you use an f-string to print name, age, and city in the format “Name: …, Age: …, City: …”?
&lt;/h1&gt;

&lt;p&gt;name = "Tom"&lt;br&gt;
age=25&lt;br&gt;
city = "Chennai"&lt;br&gt;
print(f"Name : {name}, Age :{age},City : {city}")&lt;/p&gt;

&lt;h1&gt;
  
  
  How do you concatenate and print the strings greeting (“Hello”) and target (“world”) with a space between them?
&lt;/h1&gt;

&lt;p&gt;greeting = "Hello"&lt;br&gt;
target = "world"&lt;br&gt;
print(greeting,target)&lt;/p&gt;

&lt;h1&gt;
  
  
  How do you print three lines of text with the strings “Line1”, “Line2”, and “Line3” on separate lines?
&lt;/h1&gt;

&lt;p&gt;print("""Welcome"&lt;br&gt;
To python free class&lt;br&gt;
from Kaniyam""")&lt;/p&gt;

&lt;h1&gt;
  
  
  How do you print the string He said, "Hello, world!" including the double quotes?
&lt;/h1&gt;

&lt;p&gt;print(' He said, "Hello, world!"')&lt;/p&gt;

&lt;h1&gt;
  
  
  How do you print the string C:\Users\Name without escaping the backslashes?
&lt;/h1&gt;

&lt;p&gt;print(r"C:\Users\jagadishwarang\Downloads")&lt;/p&gt;

&lt;h1&gt;
  
  
  How do you print the result of the expression 5 + 3?
&lt;/h1&gt;

&lt;p&gt;a = 5&lt;br&gt;
b = 3&lt;br&gt;
print(a+b)&lt;/p&gt;

&lt;h1&gt;
  
  
  How do you print the strings “Hello” and “world” separated by a hyphen -
&lt;/h1&gt;

&lt;p&gt;print("Hello", "world", sep="-")&lt;/p&gt;

&lt;h1&gt;
  
  
  How do you print the string “Hello” followed by a space, and then print “world!” on the same line?
&lt;/h1&gt;

&lt;p&gt;print("Hello world")&lt;/p&gt;

&lt;h1&gt;
  
  
  How do you print the string “Hello ” three times in a row?
&lt;/h1&gt;

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

</description>
    </item>
    <item>
      <title>How to install the python</title>
      <dc:creator>Jagadishwaran G</dc:creator>
      <pubDate>Tue, 09 Jul 2024 09:52:26 +0000</pubDate>
      <link>https://dev.to/jagadishwaran_g_c1d0a2786/how-to-install-the-python-1ig0</link>
      <guid>https://dev.to/jagadishwaran_g_c1d0a2786/how-to-install-the-python-1ig0</guid>
      <description>&lt;p&gt;Installing Python on a Windows 64-bit system is straightforward. Here's a step-by-step guide to help you through the process:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 1: Download Python Installer&lt;/strong&gt;&lt;br&gt;
Visit the Python official website: Go to python.org.&lt;/p&gt;

&lt;p&gt;Navigate to the downloads section: Click on "Downloads" from the top navigation menu.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Download Python:&lt;/strong&gt; The website should detect your operating system and offer the appropriate installer. You'll want to download the latest version of Python 3.x (e.g., Python 3.10.0). Ensure that you select the 64-bit installer unless you specifically need the 32-bit version for compatibility reasons.&lt;/p&gt;

&lt;p&gt;Direct link to the Python download page: Python Downloads&lt;br&gt;
&lt;strong&gt;Step 2: Run the Installer&lt;/strong&gt;&lt;br&gt;
Run the downloaded installer: Once the download completes, locate the downloaded installer file (typically named something like python-3.X.X-amd64.exe where X.X is the version number).&lt;/p&gt;

&lt;p&gt;Launch the installer: Double-click the installer file to start the installation process.&lt;/p&gt;

&lt;p&gt;Check "Add Python to PATH": On the first page of the installer, make sure to check the box that says "Add Python X.X to PATH". This will allow you to run Python from the command line more easily.&lt;/p&gt;

&lt;p&gt;Customize the installation (optional): You can click on "Customize installation" if you want to modify the installation directory or choose specific components. For most users, the default options are fine.&lt;/p&gt;

&lt;p&gt;**Begin installation: **Click "Install Now" to begin the installation.&lt;/p&gt;

&lt;p&gt;Wait for the installation to complete: The installer will now install Python onto your system. This process usually takes a few minutes.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 3: Verify Python Installation&lt;/strong&gt;&lt;br&gt;
Check Python version: Once the installation is complete, you can verify it by opening a command prompt:&lt;/p&gt;

&lt;p&gt;Type python --version or python -V and press Enter. This should display the installed Python version, confirming that Python is installed correctly.&lt;br&gt;
Optional: Verify pip installation: Pip is Python's package installer, and it usually comes bundled with Python installations from version 3.4 onwards. To verify pip, type pip --version or pip -V and press Enter. This should display the installed pip version.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 4: Set up Python Development Environment (Optional)&lt;/strong&gt;&lt;br&gt;
Install a text editor or IDE: While not necessary for running Python, you may want to install a text editor or an Integrated Development Environment (IDE) for easier coding. Popular choices include Visual Studio Code, PyCharm, and IDLE (comes with Python).&lt;/p&gt;

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