Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Done
  • Loading branch information
Nile28 committed Sep 27, 2018
commit 00e70e483c91da01a67964397271a921b97d4eec
20 changes: 12 additions & 8 deletions q02_teams/build.py
Original file line number Diff line number Diff line change
@@ -2,16 +2,20 @@
# default imports
from greyatomlib.python_getting_started.q01_read_data.build import read_data
data = read_data()
def teams(data):
Nilesh=data['info']['teams']
return Nilesh
teams(data)

# solution
def teams(data=data):

# write your code here
teams =data['info']['teams']

return teams

type(data)
data['info']['teams']
data.keys()
data['info']
d=data['info']
type(d)
d.keys()
d['teams']
Nilesh=data['info']['teams']
Nilesh