sh_08_打印分隔线
def print_line(char, times): print(char * times) print_line("hi ", 40)
原文:https://www.cnblogs.com/shaohan/p/11519316.html