From 3f0d9f3ff7fef097ff52f7e043cbfcb96d388995 Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Fri, 3 Sep 2021 15:29:23 -0400 Subject: [PATCH] [+] courseinfo: Add newline in markdown --- courseinfo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/courseinfo.py b/courseinfo.py index 9b45cba..731fd8e 100644 --- a/courseinfo.py +++ b/courseinfo.py @@ -17,4 +17,4 @@ def get_course_info(id: str): if __name__ == '__main__': sep = input('Please enter the separator (Eg. a comma): ') l = input(f'Please enter course codes separated by "{sep}": ') - [print(get_course_info(it.strip())['full']) for it in l.split(sep)] + [print(get_course_info(it.strip())['full'] + ' ') for it in l.split(sep)]