Answers for "add to a string python"

4

how to append string to another string in python

# Concatenation
string1 = "str"
string2 = "ing"
string3 = string1 + string2
# string3 is str + ing which is 'string'
# OR
print(string1 + string2)            # prints 'string' 

# Format
string3 = f"{string1}{string2}"     # prints 'string'
Posted by: Guest on February-24-2020
-1

How to Append to Strings

#include <string>
#include <iostream>

int main() {
  std::string sentence{"She"};
  sentence.append(" is playing");
  sentence += " the piano.";
}

Output:
She is playing the piano.
Posted by: Guest on November-27-2021

Code answers related to "add to a string python"

Python Answers by Framework

Browse Popular Code Answers by Language