<?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: pythonpipblog</title>
    <description>The latest articles on DEV Community by pythonpipblog (@pythonpipblog).</description>
    <link>https://dev.to/pythonpipblog</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F539624%2Fefd37062-6a34-4761-8787-aae57f835173.png</url>
      <title>DEV Community: pythonpipblog</title>
      <link>https://dev.to/pythonpipblog</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/pythonpipblog"/>
    <language>en</language>
    <item>
      <title>Restful API with Express</title>
      <dc:creator>pythonpipblog</dc:creator>
      <pubDate>Tue, 16 Nov 2021 05:45:52 +0000</pubDate>
      <link>https://dev.to/pythonpipblog/restful-api-with-express-21ne</link>
      <guid>https://dev.to/pythonpipblog/restful-api-with-express-21ne</guid>
      <description>&lt;p&gt;his is the second part of Restful CRUD API with Express, MongoDB and Mongoose. I am going to let you know add a record, edit a record and delete a record using nodejs and mongodb.&lt;/p&gt;

&lt;p&gt;I’ll create a restful API with express and nodejs.&lt;/p&gt;

&lt;p&gt;I have already shared the tutorial Restful CRUD API with Express, MongoDB and Mongoose.&lt;br&gt;
&lt;a href="https://www.restapiexample.com/build-rest-api/restful-api-with-express-part-ii/"&gt;https://www.restapiexample.com/build-rest-api/restful-api-with-express-part-ii/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>node</category>
    </item>
    <item>
      <title>How To Halt Execution in Golang Using Sleep</title>
      <dc:creator>pythonpipblog</dc:creator>
      <pubDate>Wed, 27 Oct 2021 04:58:00 +0000</pubDate>
      <link>https://dev.to/pythonpipblog/how-to-halt-execution-in-golang-using-sleep-4dhj</link>
      <guid>https://dev.to/pythonpipblog/how-to-halt-execution-in-golang-using-sleep-4dhj</guid>
      <description>&lt;p&gt;in this tutorial, We’ll learn how to use golang sleep in an application. We can temporarily stop the execution using sleep() method.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.golanglearn.com/golang-tutorials/how-to-halt-execution-in-golang-using-sleep/"&gt;https://www.golanglearn.com/golang-tutorials/how-to-halt-execution-in-golang-using-sleep/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>go</category>
    </item>
    <item>
      <title>Different Ways to Reverse a String in Python</title>
      <dc:creator>pythonpipblog</dc:creator>
      <pubDate>Wed, 27 Oct 2021 04:44:57 +0000</pubDate>
      <link>https://dev.to/pythonpipblog/different-ways-to-reverse-a-string-in-python-3iab</link>
      <guid>https://dev.to/pythonpipblog/different-ways-to-reverse-a-string-in-python-3iab</guid>
      <description>&lt;p&gt;in this tutorial, I am going to tell you the number of ways to reverse a string using python 3. Python has no built-in mechanism for reversing a string. We’ll create a reverse string in a variety of methods.&lt;/p&gt;

</description>
      <category>python</category>
    </item>
    <item>
      <title>Python isupper(), islower(), lower() and upper() methods</title>
      <dc:creator>pythonpipblog</dc:creator>
      <pubDate>Sat, 16 Oct 2021 09:31:30 +0000</pubDate>
      <link>https://dev.to/pythonpipblog/python-isupper-islower-lower-and-upper-methods-50ii</link>
      <guid>https://dev.to/pythonpipblog/python-isupper-islower-lower-and-upper-methods-50ii</guid>
      <description>&lt;p&gt;This python string tutorial help to learn some string methods(isupper(), islower(), lower() and upper()) with example.These methods are used to check string is uppercase, check string is lowercase, convert string to lowercase and string in uppercase.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.pythonpip.com/python-tutorials/python-isupper-islower-lower-and-upper-methods/"&gt;https://www.pythonpip.com/python-tutorials/python-isupper-islower-lower-and-upper-methods/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>python</category>
    </item>
    <item>
      <title>How To Use Strftime and Strptime In Python</title>
      <dc:creator>pythonpipblog</dc:creator>
      <pubDate>Wed, 06 Oct 2021 09:34:32 +0000</pubDate>
      <link>https://dev.to/pythonpipblog/how-to-use-strftime-and-strptime-in-python-1ddj</link>
      <guid>https://dev.to/pythonpipblog/how-to-use-strftime-and-strptime-in-python-1ddj</guid>
      <description>&lt;p&gt;The strftime() and strptime() methods from the Python datetime module will be covered in this post. The strptime() function turns a datetime object into a string in the exact opposite way as the strftime() function.&lt;/p&gt;

</description>
      <category>python</category>
      <category>pythontutorial</category>
    </item>
    <item>
      <title>Concatenate Multiple Columns In MySQL</title>
      <dc:creator>pythonpipblog</dc:creator>
      <pubDate>Fri, 01 Jan 2021 18:51:48 +0000</pubDate>
      <link>https://dev.to/pythonpipblog/concatenate-multiple-columns-in-mysql-6mg</link>
      <guid>https://dev.to/pythonpipblog/concatenate-multiple-columns-in-mysql-6mg</guid>
      <description>&lt;p&gt;in this tutorial, We ll concatenate two or multiple columns in MySQL.We will select the values and concat multiple columns using MySQL inbuilt method.&lt;br&gt;
&lt;a href="https://www.phpflow.com/mysql/concatenate-multiple-columns-in-mysql/"&gt;https://www.phpflow.com/mysql/concatenate-multiple-columns-in-mysql/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>php</category>
      <category>mysql</category>
    </item>
    <item>
      <title>How To Convert Python String To Array</title>
      <dc:creator>pythonpipblog</dc:creator>
      <pubDate>Sun, 13 Dec 2020 14:42:36 +0000</pubDate>
      <link>https://dev.to/pythonpipblog/how-to-convert-python-string-to-array-48j3</link>
      <guid>https://dev.to/pythonpipblog/how-to-convert-python-string-to-array-48j3</guid>
      <description>&lt;p&gt;This tutorial help to create python string to array.Python does not have inbuilt array data type, it have list data type that can be used as array type.So basically, we are converting string into python list.&lt;/p&gt;

&lt;p&gt;Python String to Array&lt;br&gt;
We ll convert String to array in Python. The python string package have split() method. The String.split() method splits the String from the delimiter and returns as a list items. The split() method default separator is the whitespace but you can specify the separator.&lt;/p&gt;

&lt;p&gt;Syntax&lt;br&gt;
string.split(separator, maxsplit)&lt;/p&gt;

&lt;p&gt;Where is parameters are :&lt;/p&gt;

&lt;p&gt;separator(optional) : It used to split the String.&lt;br&gt;
maxsplit(optional) : It specifies number of splits to do. The default value is -1, which is “all occurrences”.&lt;br&gt;
Example:&lt;br&gt;
1&lt;/p&gt;

&lt;h1&gt;
  
  
  test.py
&lt;/h1&gt;

&lt;p&gt;2&lt;br&gt;
str = "My name is dominic toretto"&lt;br&gt;
3&lt;br&gt;
arr = str.split()&lt;br&gt;
4&lt;br&gt;
print(arr)&lt;br&gt;
Output&lt;br&gt;
['My', 'name', 'is', 'dominic', 'toretto']&lt;/p&gt;

&lt;p&gt;Originally posted at - &lt;a href="https://www.pythonpip.com/python-tutorials/how-to-convert-python-string-to-array/"&gt;https://www.pythonpip.com/python-tutorials/how-to-convert-python-string-to-array/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>python3</category>
    </item>
  </channel>
</rss>
