This is probably a very simple question for some, but it has me stumped. Can you use variables within python\'s triple-quotes?
In the following example, how do use
Pass multiple args in simple way
wash_clothes = 'tuesdays' clean_dishes = 'never' a=""" I like to wash clothes on %s I like to clean dishes %s"""%(wash_clothes,clean_dishes) print(a)