3. Text in Python
"Hello""Hello" + " mary"
>> Hello mary
string1 = "Hello"
string2 = " Eric"
string1 + string2
>> Hello Ericlen('hello')
>> 5
string2 = " Eric"
len('Hello'+string2)
>> 10Last updated
"Hello""Hello" + " mary"
>> Hello mary
string1 = "Hello"
string2 = " Eric"
string1 + string2
>> Hello Ericlen('hello')
>> 5
string2 = " Eric"
len('Hello'+string2)
>> 10Last updated