print("Welcome to Python Onboarding Course") # Simple command
print("Welcome")
Welcome to Python Onboarding Course
4+3
var = 4+3
var
type(var)
var
var = [2,3,4,5]# List
var
type(var)
var = [4,"Customers", "Vendors", "Employees", '5']
type(var)
var[1]
"The key stakeholders of any organizatioin are " + var[1] + ", " + var[2] + " & " + var[3] 
x=[[1,2,3], [4,5,6]]
x
f=10.35
type(f)
c=100+8j
type(c)
s = "Im a python data scientist"
type(s)
l=[3,4,5]
type(l)
t=(2,3,4,5)
type(t)
t[0]
t[0]=8
l[0]
l[0]=10
l
D={"key":"value"}
D
D={"First Name" : "Neil", "Second Name" : " Srinivasan", "Profession": "Instructor"}
D
D["First Name"]