#!/usr/bin/python3
#One Line Comment
'''
Multiple
Line
Comments
'''
def main():
	print("Hello from Python")
	print("Hi")
	#Immutables
	a=3
	b=4.5
	c=2+10j
	d=True
	e="Hello"
	print ("Results=",a,",",b)
	print ("Real=",c.real)
	print ("Imag=",c.imag)
	print (e)
	print (type(b))
	print (id(a))
	k=a
	print (id(k))
	a=a+1
	print (id(a))
	g=None
	for i in range(0,10,1):
		print("i=",i,"id=",id(i))
if __name__=="__main__":
	main()
