Python 3 - Two Python Questions
csc242lab1.py
# CSC 242 # Lab 1 template # Put your name here # Put your collaborator(s) name(s) here # You are not allowed to access online resources when completing labs. # Please log into Zoom and ask your TA if you are unclear on this policy. # Include doc strings for full credit # A doc string is a string that appears below the header for a function # It's not the same thing as a comment # Ask if you don't know what I mean # You can change the import statement if you wish from random import * # Question 1 def cleanData(lst): pass # Question 2 def nameGame(lst): pass