All pastes #2048277 Raw Edit

Someone

public python v1 · immutable
#2048277 ·published 2011-04-19 14:41 UTC
rendered paste body
# Name Program ##                                                                                                                                                      ## By:   Brian Gross ##                                                                                                                                                      ## On 4/19/11 ## Demonstrates a class #class Name:	def createName(self,name):		self.name = name	def displayName(self):		return self.name	def saying(self):		print 'Hello, %d' % self.namefirst = Name()second = Name()a = raw_input('Please enter your name: ')first.saying(a)# http://www.youtube.com/watch?v=M1BAlDufqao #