append in string code example

Example 1: how to add text to a string python

word = "hello"
name = "John"

sentence = word += name

Example 2: 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'

Example 3: append string python

var1 = "foo"
var2 = "bar"
var3 = var1 + var2

Example 4: stringBuilder append string

public StringBuilder append(String str)

Example 5: appending string in c++

#include<iostream>
#include <string>
int main() {
	//"Ever thing inside these double quotes becomes const char array"
//	std::string namee = "Caleb" +"Hello";//This will give error because adding const char array to const char array 
	std::string namee = "Caleb";
	namee += " Hello";//This will work because adding a ptr to a actual string
	std::cout << namee << std::endl;// output=>Caleb Hello
//You can also use the below
	std::string namee2 = std::string("Caleb")+" Hello";// This will work because constructor will convert const char array  to string, adding a ptr to string
	std::cout << namee2 << std::endl;// output=>Caleb Hello
	std::cin.get();
}