Akhil Narayanan Nair
home
Python - List Operations
================
a = [1, 2, 3]
b = [4, 5, 6]
c = a + b
print(c)
print(b*2)
Related Posts
24 Apr 2024
»
Python - Bit NOT
23 Apr 2024
»
Python - Bit XOR
22 Apr 2024
»
Python - Bit OR