Source code for demo2

#coding=UTF-8

[docs]def my_function(a, b): """函数功能说明 >>> my_function(2, 3) 6 >>> my_function('a', 3) 'aaa' """ return a * b