• Tutorials
  • DSA
  • Data Science
  • Web Tech
  • Courses
July 25, 2022 |22.3K Views

Python Program to Add One String to another

  Share   Like
Description
Discussion

In this video, we will learn how to Add One String to another using python. 

We will cover the following approaches in this video:
1. Using ' + ' Operator
3. Using join

In this video, we will try to understand how to join two string using string Concatenation. In String Concatenation, we combine two strings.

We can perform string concatenation using following ways:
1) Using + operator - This operator can be used to add multiple strings together. However, the arguments must be a string.
2) Using join() method - The join() method is a string method and returns a string in which the elements of sequence have been joined by str separator.

Python Program to One String to another using python:
https://www.geeksforgeeks.org/python-add-one-string-to-another/