Skip to content

Instantly share code, notes, and snippets.

@IndhumathyChelliah
Created July 2, 2020 06:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IndhumathyChelliah/0026616c1ad414bc0e755f9da0b1444e to your computer and use it in GitHub Desktop.
Save IndhumathyChelliah/0026616c1ad414bc0e755f9da0b1444e to your computer and use it in GitHub Desktop.
#Adding two numbers
a1=4+5
print (a1)#Output:9
#concatenating two strings
s1="Hello " + "world!"
print (s1)#Output:Hello world!
#merging two lists
l1=[1,2]+[3,4]
print (l1)#Output:[1, 2, 3, 4]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment