simeonshopov

Courses (Lists)

Nov 27th, 2019
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.11 KB | None | 0 0
  1. n = int(input())
  2. courses = []
  3.  
  4. for i in range(n):
  5.   course = input()
  6.   courses.append(course)
  7.  
  8. print(courses)
Advertisement
Add Comment
Please, Sign In to add comment