<?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: Avinash Mathi</title>
    <description>The latest articles on DEV Community by Avinash Mathi (@avinash_mathi_483b018e36b).</description>
    <link>https://dev.to/avinash_mathi_483b018e36b</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%2F1833464%2Fc4c974f5-5530-4afa-bba8-d051cdfbbb39.png</url>
      <title>DEV Community: Avinash Mathi</title>
      <link>https://dev.to/avinash_mathi_483b018e36b</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/avinash_mathi_483b018e36b"/>
    <language>en</language>
    <item>
      <title>Slicing in python programming</title>
      <dc:creator>Avinash Mathi</dc:creator>
      <pubDate>Sat, 14 Sep 2024 15:53:42 +0000</pubDate>
      <link>https://dev.to/avinash_mathi_483b018e36b/slicing-in-python-programming-1i2e</link>
      <guid>https://dev.to/avinash_mathi_483b018e36b/slicing-in-python-programming-1i2e</guid>
      <description>&lt;p&gt;slicing prpgramming&lt;br&gt;
a="Avinash"&lt;br&gt;
print(a[:])&lt;br&gt;
b="keeramangalam"&lt;br&gt;
print(b[3:])&lt;br&gt;
c="Hello Avinash"&lt;br&gt;
print(c[4:])&lt;br&gt;
d="Hello world"&lt;br&gt;
print(c[:4])&lt;br&gt;
e="Keeramangalam"&lt;br&gt;
print(e[:-2])&lt;br&gt;
g="Keeramangalam"&lt;br&gt;
print(g[-5:-2])&lt;br&gt;
o/p&lt;br&gt;
Avinash&lt;br&gt;
ramangalam&lt;br&gt;
o Avinash&lt;br&gt;
Hell&lt;br&gt;
Keeramangal&lt;br&gt;
gal&lt;/p&gt;

</description>
    </item>
    <item>
      <title>casting in pytho programming</title>
      <dc:creator>Avinash Mathi</dc:creator>
      <pubDate>Wed, 04 Sep 2024 16:29:35 +0000</pubDate>
      <link>https://dev.to/avinash_mathi_483b018e36b/casting-in-pytho-programming-l2i</link>
      <guid>https://dev.to/avinash_mathi_483b018e36b/casting-in-pytho-programming-l2i</guid>
      <description>&lt;p&gt;casting in python&lt;br&gt;
a=int(6)&lt;br&gt;
b=int(7)&lt;br&gt;
c=int(6)&lt;br&gt;
print(a,b,c)&lt;br&gt;
a=str("56")&lt;br&gt;
b=str("23")&lt;br&gt;
c=str("45")&lt;br&gt;
print(a,b,c)&lt;br&gt;
a=float(1)&lt;br&gt;
b=float(6)&lt;br&gt;
c=float(7)&lt;br&gt;
print(a,b,c)&lt;br&gt;
o/p&lt;br&gt;
6 7 6&lt;br&gt;
56 23 45&lt;br&gt;
1.0 6.0 7.0&lt;/p&gt;

</description>
      <category>python</category>
      <category>programming</category>
      <category>pattasalno</category>
    </item>
    <item>
      <title>Strings in python programming</title>
      <dc:creator>Avinash Mathi</dc:creator>
      <pubDate>Wed, 04 Sep 2024 16:24:18 +0000</pubDate>
      <link>https://dev.to/avinash_mathi_483b018e36b/strings-in-python-programming-1jb7</link>
      <guid>https://dev.to/avinash_mathi_483b018e36b/strings-in-python-programming-1jb7</guid>
      <description>&lt;p&gt;string in programming&lt;br&gt;
a="Hello"&lt;br&gt;
b="Avinash"&lt;br&gt;
print(a,b)&lt;br&gt;
a="My name is Avinash"&lt;br&gt;
print(a)&lt;br&gt;
a="""My name is Avinash.I am come to keeramangalam,str(age(19)"""&lt;br&gt;
print(a)&lt;br&gt;
a="Avinash"&lt;br&gt;
print(a[4])&lt;br&gt;
a="Avinash"&lt;br&gt;
print(len(a))&lt;br&gt;
txt="The best beauitiful in india"&lt;br&gt;
print("India" in txt)&lt;/p&gt;

&lt;h1&gt;
  
  
  modify string
&lt;/h1&gt;

&lt;p&gt;a="Hello world"&lt;br&gt;
print(a.upper())&lt;/p&gt;

&lt;h1&gt;
  
  
  lower case
&lt;/h1&gt;

&lt;p&gt;a="Hello world"&lt;br&gt;
print(a.lower())&lt;/p&gt;

&lt;h1&gt;
  
  
  replace string
&lt;/h1&gt;

&lt;p&gt;a="Helllo world"&lt;br&gt;
print(a.replace("h","r"))&lt;/p&gt;

&lt;h1&gt;
  
  
  strip string
&lt;/h1&gt;

&lt;p&gt;a="Hello world"&lt;br&gt;
print(a.strip())&lt;/p&gt;

&lt;h1&gt;
  
  
  string concentrated
&lt;/h1&gt;

&lt;p&gt;a="Hello"&lt;br&gt;
b="Avinash"&lt;br&gt;
c=(a+b)&lt;br&gt;
print(c)&lt;/p&gt;

&lt;h1&gt;
  
  
  add two values
&lt;/h1&gt;

&lt;p&gt;a="Hello"&lt;br&gt;
b="world"&lt;br&gt;
print(a+""+b)&lt;br&gt;
age=10&lt;br&gt;
txt=f"My name is Avinash,Iam{age}"&lt;br&gt;
print(txt)&lt;/p&gt;

&lt;p&gt;o/p&lt;br&gt;
Hello Avinash&lt;br&gt;
My name is Avinash&lt;br&gt;
My name is Avinash.I am come to keeramangalam,str(age(19)&lt;br&gt;
a&lt;br&gt;
7&lt;br&gt;
False&lt;br&gt;
HELLO WORLD&lt;br&gt;
hello world&lt;br&gt;
Helllo world&lt;br&gt;
Hello world&lt;br&gt;
HelloAvinash&lt;br&gt;
Helloworld&lt;br&gt;
My name is Avinash,Iam10&lt;/p&gt;

</description>
      <category>python</category>
      <category>programming</category>
      <category>pattsalno</category>
    </item>
    <item>
      <title>Data type in python</title>
      <dc:creator>Avinash Mathi</dc:creator>
      <pubDate>Tue, 03 Sep 2024 15:22:02 +0000</pubDate>
      <link>https://dev.to/avinash_mathi_483b018e36b/data-type-in-python-c43</link>
      <guid>https://dev.to/avinash_mathi_483b018e36b/data-type-in-python-c43</guid>
      <description>&lt;p&gt;Build in datatype&lt;br&gt;
text type:string&lt;br&gt;
Numeric type:int, float,complex&lt;br&gt;
sequence type:List,Tuple,range&lt;br&gt;
mapping type:Dictionary&lt;br&gt;
set type:set,frozenset&lt;br&gt;
Boolean type:bool&lt;br&gt;
binary type:bytes,bytearray,memory view&lt;br&gt;
none type:none type&lt;br&gt;
program&lt;br&gt;
a="Avinash"&lt;br&gt;
print(type(a))&lt;br&gt;
b=45&lt;br&gt;
print(type(b))&lt;br&gt;
c=5.0&lt;br&gt;
print(type(c))&lt;br&gt;
d=5+8&lt;br&gt;
print(type(d))&lt;br&gt;
e=["pencil","box","scale"]&lt;br&gt;
print(type(e))&lt;br&gt;
f=("Apple","orange","banana")&lt;br&gt;
print(type(f))&lt;br&gt;
for i in range(5,9):&lt;br&gt;
 print(i)&lt;br&gt;
g=True&lt;br&gt;
print(type(g))&lt;br&gt;
h=False&lt;br&gt;
print(type(h))&lt;br&gt;
i={}&lt;br&gt;
print(type(i))&lt;br&gt;
j={5,7,8,99}&lt;br&gt;
print(type(j))&lt;br&gt;
o/p&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
5&lt;br&gt;
6&lt;br&gt;
7&lt;br&gt;
8&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;/p&gt;

</description>
      <category>python</category>
      <category>programming</category>
    </item>
    <item>
      <title>based in python variable</title>
      <dc:creator>Avinash Mathi</dc:creator>
      <pubDate>Tue, 03 Sep 2024 14:49:25 +0000</pubDate>
      <link>https://dev.to/avinash_mathi_483b018e36b/based-in-python-variable-52o6</link>
      <guid>https://dev.to/avinash_mathi_483b018e36b/based-in-python-variable-52o6</guid>
      <description>&lt;p&gt;variable is collection of stored data&lt;/p&gt;

&lt;h1&gt;
  
  
  Variable
&lt;/h1&gt;

&lt;p&gt;a=20&lt;br&gt;
b="Avinash"&lt;br&gt;
print(a,b)&lt;/p&gt;

&lt;h1&gt;
  
  
  casting
&lt;/h1&gt;

&lt;p&gt;a=input()&lt;br&gt;
b=input()&lt;br&gt;
c=input()&lt;br&gt;
print(a,b,c)&lt;/p&gt;

&lt;h1&gt;
  
  
  variablename
&lt;/h1&gt;

&lt;p&gt;my_variablename="Python programming"&lt;br&gt;
print(my_variablename)&lt;/p&gt;

&lt;h1&gt;
  
  
  variable a assign multiple value
&lt;/h1&gt;

&lt;p&gt;x,y,z="Avinash","arjun","Arun"&lt;br&gt;
print(x,y,z)&lt;/p&gt;

&lt;h1&gt;
  
  
  one value to multiple value
&lt;/h1&gt;

&lt;p&gt;x=y=z="Avinash"&lt;br&gt;
print(x,y,z)&lt;/p&gt;

&lt;h1&gt;
  
  
  unpack
&lt;/h1&gt;

&lt;p&gt;movie=["Rayyan","singam","goat"]&lt;br&gt;
x,y,z=movie&lt;br&gt;
print(x,y,z)&lt;/p&gt;

&lt;h1&gt;
  
  
  gloabal variable
&lt;/h1&gt;

&lt;p&gt;x="Avinash"&lt;br&gt;
def myfun():&lt;br&gt;
   print("Python develop "+x)&lt;br&gt;
myfun()&lt;/p&gt;

&lt;p&gt;o/p&lt;br&gt;
20 Avinash&lt;br&gt;
4&lt;br&gt;
5&lt;br&gt;
6&lt;br&gt;
4 5 6&lt;br&gt;
Python programming&lt;br&gt;
Avinash arjun Arun&lt;br&gt;
Avinash Avinash Avinash&lt;br&gt;
Rayyan singam goat&lt;br&gt;
Python develop Avinash&lt;/p&gt;

</description>
      <category>ython</category>
      <category>prograamin</category>
      <category>pattasalno</category>
    </item>
    <item>
      <title>Datatype in python</title>
      <dc:creator>Avinash Mathi</dc:creator>
      <pubDate>Tue, 03 Sep 2024 01:38:12 +0000</pubDate>
      <link>https://dev.to/avinash_mathi_483b018e36b/datatype-in-python-h83</link>
      <guid>https://dev.to/avinash_mathi_483b018e36b/datatype-in-python-h83</guid>
      <description>&lt;p&gt;Build in datatype&lt;br&gt;
text type:string&lt;br&gt;
Numeric type:int, float,complex&lt;br&gt;
sequence type:List,Tuple,range&lt;br&gt;
mapping type:Dictionary&lt;br&gt;
set type:set,frozenset&lt;br&gt;
Boolean type:bool&lt;br&gt;
binary type:bytes,bytearray,memory view&lt;br&gt;
none type:none type&lt;br&gt;
program &lt;br&gt;
a="Avinash"&lt;br&gt;
print(type(a))&lt;br&gt;
b=45&lt;br&gt;
print(type(b))&lt;br&gt;
c=5.0&lt;br&gt;
print(type(c))&lt;br&gt;
d=5+8&lt;br&gt;
print(type(d))&lt;br&gt;
e=["pencil","box","scale"]&lt;br&gt;
print(type(e))&lt;br&gt;
f=("Apple","orange","banana")&lt;br&gt;
print(type(f))&lt;br&gt;
for i in range(5,9):&lt;br&gt;
   print(i)&lt;br&gt;
g=True&lt;br&gt;
print(type(g))&lt;br&gt;
h=False&lt;br&gt;
print(type(h))&lt;br&gt;
i={}&lt;br&gt;
print(type(i))&lt;br&gt;
j={5,7,8,99}&lt;br&gt;
print(type(j))&lt;/p&gt;

&lt;p&gt;o/p&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
5&lt;br&gt;
6&lt;br&gt;
7&lt;br&gt;
8&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;/p&gt;

</description>
      <category>pythom</category>
      <category>programming</category>
      <category>paatasalno</category>
    </item>
    <item>
      <title>Basic of python</title>
      <dc:creator>Avinash Mathi</dc:creator>
      <pubDate>Thu, 29 Aug 2024 15:53:40 +0000</pubDate>
      <link>https://dev.to/avinash_mathi_483b018e36b/basic-of-python-oki</link>
      <guid>https://dev.to/avinash_mathi_483b018e36b/basic-of-python-oki</guid>
      <description>&lt;p&gt;python&lt;br&gt;
Basic of python&lt;br&gt;
The python is the develop in the author: Guido van rossum in 1991&lt;br&gt;
The python is interperters and compiler language&lt;br&gt;
The python difference in interperters and compiler&lt;br&gt;
interper:&lt;br&gt;
            It excutes a program line by line&lt;br&gt;
             It is a slow process&lt;br&gt;
             It does not generate any form of output&lt;br&gt;
             It takes less utilized of cpu&lt;br&gt;
compiler:&lt;br&gt;
                 It translates a program on a single run&lt;br&gt;
                  It is fast process&lt;br&gt;
                 It generate output in the form of .excuted&lt;br&gt;
                 It is utilized cpu more&lt;/p&gt;

</description>
      <category>python</category>
      <category>programming</category>
      <category>pattasalno</category>
    </item>
    <item>
      <title>python program Lists</title>
      <dc:creator>Avinash Mathi</dc:creator>
      <pubDate>Wed, 28 Aug 2024 01:38:47 +0000</pubDate>
      <link>https://dev.to/avinash_mathi_483b018e36b/python-program-lists-5hc1</link>
      <guid>https://dev.to/avinash_mathi_483b018e36b/python-program-lists-5hc1</guid>
      <description>&lt;p&gt;mylist create&lt;/p&gt;

&lt;p&gt;mylist=["singam","goat","rayyan","leo"]&lt;br&gt;
print(mylist)&lt;br&gt;
print(mylist[2])&lt;br&gt;
mylist[1]="mersal"&lt;br&gt;
print(mylist)&lt;br&gt;
mylist=["singam","goat","raayan"]&lt;br&gt;
mylist.append("mersal")&lt;br&gt;
print(mylist)&lt;br&gt;
mylist=["singam","goat","raayan"]&lt;br&gt;
mylist.insert(1,"Mersal")&lt;br&gt;
print(mylist)&lt;br&gt;
mylist=["singam","goat","rayaan","mersal"]&lt;br&gt;
mylist.remove("singam")&lt;br&gt;
print(mylist)&lt;br&gt;
mylist=["singam","goat","rayaan","mersal"]&lt;br&gt;
for  x in mylist:&lt;br&gt;
        print(x)&lt;br&gt;
mylist=["singam","goat","rayaan","mersal"]&lt;br&gt;
mylist.sort()&lt;br&gt;
print(mylist)&lt;br&gt;
mylist=["singam","goat","rayaan","mersal"]&lt;br&gt;
mylist.pop()&lt;br&gt;
print(mylist)&lt;br&gt;
o/p&lt;br&gt;
['singam', 'goat', 'rayyan', 'leo']&lt;br&gt;
rayyan&lt;br&gt;
['singam', 'mersal', 'rayyan', 'leo']&lt;br&gt;
['singam', 'goat', 'raayan', 'mersal']&lt;br&gt;
['singam', 'Mersal', 'goat', 'raayan']&lt;br&gt;
['goat', 'rayaan', 'mersal']&lt;br&gt;
singam&lt;br&gt;
goat&lt;br&gt;
rayaan&lt;br&gt;
mersal&lt;br&gt;
['goat', 'mersal', 'rayaan', 'singam']&lt;br&gt;
['singam', 'goat', 'rayaan']&lt;/p&gt;

</description>
      <category>python</category>
      <category>programmming</category>
      <category>pattasalna</category>
    </item>
    <item>
      <title>Python program</title>
      <dc:creator>Avinash Mathi</dc:creator>
      <pubDate>Wed, 21 Aug 2024 14:19:25 +0000</pubDate>
      <link>https://dev.to/avinash_mathi_483b018e36b/python-program-dc9</link>
      <guid>https://dev.to/avinash_mathi_483b018e36b/python-program-dc9</guid>
      <description>&lt;p&gt;Print("Hello world")&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Hints: Provide hints after a certain number of wrong guesses, such as whether the number is even or odd.</title>
      <dc:creator>Avinash Mathi</dc:creator>
      <pubDate>Thu, 15 Aug 2024 16:04:20 +0000</pubDate>
      <link>https://dev.to/avinash_mathi_483b018e36b/hints-provide-hints-after-a-certain-number-of-wrong-guesses-such-as-whether-the-number-is-even-or-odd-opp</link>
      <guid>https://dev.to/avinash_mathi_483b018e36b/hints-provide-hints-after-a-certain-number-of-wrong-guesses-such-as-whether-the-number-is-even-or-odd-opp</guid>
      <description>&lt;p&gt;num1=input("Enter the odd:")&lt;br&gt;
num2=input("Enter the even:")&lt;br&gt;
print("The number is even")&lt;br&gt;
print("The provide is odd")&lt;br&gt;
print(num1,num2)&lt;br&gt;
o/p&lt;br&gt;
Enter the odd:6&lt;br&gt;
Enter the even:7&lt;br&gt;
The provide is odd&lt;br&gt;
The number is even&lt;br&gt;
6 7&lt;/p&gt;

</description>
      <category>python</category>
      <category>programming</category>
    </item>
    <item>
      <title>Maximum Attempts: Set a limit on the number of attempts (e.g., 5 or 10 attempts) to increase the challenge.</title>
      <dc:creator>Avinash Mathi</dc:creator>
      <pubDate>Thu, 15 Aug 2024 15:38:49 +0000</pubDate>
      <link>https://dev.to/avinash_mathi_483b018e36b/maximum-attempts-set-a-limit-on-the-number-of-attempts-eg-5-or-10-attempts-to-increase-the-challenge-21k2</link>
      <guid>https://dev.to/avinash_mathi_483b018e36b/maximum-attempts-set-a-limit-on-the-number-of-attempts-eg-5-or-10-attempts-to-increase-the-challenge-21k2</guid>
      <description>&lt;p&gt;for i in range(5,10):&lt;br&gt;
    max==5,10&lt;br&gt;
    print(i)&lt;br&gt;
o/p&lt;br&gt;
6789&lt;/p&gt;

</description>
      <category>python</category>
      <category>programming</category>
    </item>
    <item>
      <title>Range of Numbers: Allow the user to choose the range (e.g., 1 to 50, 1 to 100, or 1 to 1000) to adjust the difficulty.</title>
      <dc:creator>Avinash Mathi</dc:creator>
      <pubDate>Thu, 15 Aug 2024 15:00:40 +0000</pubDate>
      <link>https://dev.to/avinash_mathi_483b018e36b/range-of-numbers-allow-the-user-to-choose-the-range-eg-1-to-50-1-to-100-or-1-to-1000-to-adjust-the-difficulty-2ip0</link>
      <guid>https://dev.to/avinash_mathi_483b018e36b/range-of-numbers-allow-the-user-to-choose-the-range-eg-1-to-50-1-to-100-or-1-to-1000-to-adjust-the-difficulty-2ip0</guid>
      <description>&lt;p&gt;print("Choose a range for the number:")&lt;br&gt;
print(1.1,50)&lt;br&gt;
print(2.1,100)&lt;br&gt;
print(3.1,1000)&lt;br&gt;
for i in range(1,50):&lt;br&gt;
    print(i)&lt;br&gt;
for i in range(1,100):&lt;br&gt;
    print(i)&lt;br&gt;
for i in range(1,1000):&lt;br&gt;
    print(i)&lt;/p&gt;

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