Commit 82d84fd1 authored by UDDESHYA's avatar UDDESHYA

Initial Commit

parents
def function1(string1,string2,listVariable):
listVariable = listVariable+(list(zip(list(string1),list(string2))))
return listVariable
mylist = ['hi',1,2,3,4]
print(mylist)
print(function1('CS251','Software',mylist))
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment