Skip to main content

Posts

Showing posts with the label hello world

p0

1 2 3 4 5 6 7 8 9 10 class blog ( object ): def __init__ ( self , stuff): print ( "Lorem Ipsum Dolor " )* 5 self .stuff = stuff def get ( self ): return self .stuff p0 = blog( 'Hello-World' ).get() Lorem Ipsum Dolor Lorem Ipsum Dolor Lorem Ipsum Dolor Lorem Ipsum Dolor Lorem Ipsum Dolor