Quick actions

cmd+k|ctrl+k

Navigation

Languages

string concatination 

Snippet info

Language

Python

Visibility

public

Author

sermon0906

Created

2026-06-24T14:26:05.68987Z

Updated

2026-06-24T14:26:05.68987Z

#doesnt allow to add integer with string this states that 2 strings can only be added 
name = 'sermon'
age = 20 
print('hello my name us '+ name + 'and my age is ' + str(age)) #it will give error cause of string concatination here we did type converstion 
INFO