Part 1
Write a Python program that does the following.
Create a string that is a long series of words separated by spaces. The string is your own creative choice. It can be names, favorite foods, animals, anything. Just make it up yourself. Do not copy the string from another source.
Turn the string into a list of words using split.
Delete three words from the list, but delete each one using a different kind of Python operation.
Sort the list.
Add new words to the list (three or more) using three different kinds of Python operation.
Turn the list of words back into a single string using join.
Print the string.
Part 2
Provide your own examples of the following using Python lists. Create your own examples. Do not copy them from another source.
Nested lists
The “*” operator
List slices
The “+=” operator
A list filter
A list operation that is legal but does the "wrong" thing, not what the programmer expects
Provide the Python code and output for your program and all your examples.
Part 3
Describe your experience so far with peer assessment of Programming Assignments.
How do you feel about the aspect assessments and feedback you have received from your peers?
How do you think your peers feel about the aspect assessments and feedback you provided them?
Part 1
string="arjun nimmy peter nishal rahul varsha sonu namitha sebastian minnu krishnapria"#string consisting of a long series of words
print(string)
list1=string.split()#converting string to list
print(list1)
list1.remove("arjun")#deleting from list
print(list1)
list1.pop(-1)#deleting from list
print(list1)
del list1[1]#deleting from list
print(list1)
list1.sort()#sorting the list
print(list1)
list1.append("meera")#inserting to list
print(list1)
list1.insert(5,"bhavana")#inserting to list
print(list1)
list1.extend(["reena"])#inserting to list
print(list1)
list2=" ".join(list1)#converting list to string
print(list2)#printing the converted string
Part 2
list1=["arjun","nimmy",["reena","minnu"]]#example of nested list
print(list1)
list2=["arjun"]*2# * operator usage
print(list2)
list3=list2[0:1]#slicing operator usage
print(list3)
list2+=["nimmy"]# += operator usage
print(list2)
list4=[True,True,False,False]
list5=list(filter(None,list4))#usage of filter
print(list5)
list6=["arjun"]
list6=list6.append("nimmy")#legal list operation but does the wrong thing, instead of adding "nimmy" to the list, it will produce result as None
print(list6)
Comments
Leave a comment