Akshay Agrawal commited on
Commit
3378349
·
unverified ·
1 Parent(s): 2c000cc

Update Python/phase_1/collections.py

Browse files
Files changed (1) hide show
  1. Python/phase_1/collections.py +0 -1
Python/phase_1/collections.py CHANGED
@@ -68,7 +68,6 @@ def _(sample_list):
68
 
69
  @app.cell
70
  def _(sample_list):
71
- # sample_list.append(6) # Add item to end
72
  extended_list = sample_list + [6] # concatenate two lists
73
  extended_list
74
  return (extended_list,)
 
68
 
69
  @app.cell
70
  def _(sample_list):
 
71
  extended_list = sample_list + [6] # concatenate two lists
72
  extended_list
73
  return (extended_list,)