Initializing

Initializing A Class

class User
	def __init__(self):
		print("I Live!")

My_User = User()
#>>> "I Live!"