[+] courseinfo: Add newline in markdown

This commit is contained in:
Hykilpikonna
2021-09-03 15:29:23 -04:00
parent a2f2571b20
commit 3f0d9f3ff7
+1 -1
View File
@@ -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)]