Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@MehediH
Created October 14, 2019 11:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MehediH/d5482cc29d4799f0ebc45c706a36cce7 to your computer and use it in GitHub Desktop.
Save MehediH/d5482cc29d4799f0ebc45c706a36cce7 to your computer and use it in GitHub Desktop.
## testing
class Script:
def __init__(self, sid, mark):
self.sid = sid
self.mark = mark
s1 = Script(242, 22) # this
s2 = Script(243, 42) # this
s3 = Script(244, 21)
s4 = Script(245, 14)
s5 = Script(246, 45) # this
s6 = Script(247, 10)
sA = [s1, s2, s3, s4, s5, s6]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment