#!/usr/bin/env python3 ##testing out a class class Homeboy: face = "Welcome to my world" def __init__(self, name): self.name = name def displaycon(self): math = 2 * 12 print("Hello " + self.name + " your math calculation is 2*12={} ".format(math))