#this is a collection of all python mini projects i am building to understand python programming and OOPs in detail
the first programme is a simple Madlibs -{ this uses string concatination there are 3 ways of string concatination
while printing}
message= 'its evening right now'
method 1- print ('hello world {}'.format(message))
method 2- print(f'hello world {message}')
method 3- print('hello world' + message)