Advertisement
Spocoman

02. Courses

Jan 21st, 2022
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.11 KB | None | 0 0
  1. num = int(input())
  2. courses = []
  3.  
  4. for i in range(num):
  5.     courses.append(input())
  6.  
  7. print(courses)
  8.  
  9.  
  10.  
  11.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement