5. What does this error refer to?Traceback (most recent call last): File "program.py", line 2, in times[2] = 10TypeError: 'tuple' object does not support item assignment *
6. Like most other builtin Python data types, tuples can be compared using the standard comparison operators. True or False? * True False 7. The easiest way to think about sets is that they are like dictionaries without values; that is, the keys in a dictionary are a set. True or False? * True False
8. Sets are unordered data structures, so they can be indexed. True or False? * True False
9. An object can be added to a set using the ________ method, whose argument is the object to add. Objects already in the set can be removed using the ________ method, whose argument is the object to remove from the set. *
10. The union can be thought of as "adding" the two sets together. It returns a set with all of the elements that are in either set. The intersection of two sets returns a set of all the elements which are in both sets. The difference of two sets can be thought of as "subtracting" one set from the other. It returns the elements in the first set minus the elements in the second set. True or False? * True False
Answer 5:
we will get this error when we are trying to assing something to
sets because sets are immutable we can't modify the sets
Answer 6:True
Answer 7:true
dictionaries can't have duplicate keys like sets
Answer 8:False
Answer 9:add and remove
Answer 10:true
Note : Please comment below if you have concerns. I am here to
help you
If you like my answer please rate and help me it is very Imp for
me
5. What does this error refer to?Traceback (most recent call last): File "program.py", line 2, in...
Using Java programming language, build a class called IntegerSet. Instructions - Create class IntegerSet An IntegerSet object holds integers in the range 0-100 Represented by an array of booleans, such that array element a[i] is set to true if integer i is in the set, and false otherwise Create these constructors and methods for the class IntegerSet() public IntegerSet union(IntegerSet iSet) public IntegerSet intersection(IntegerSet iSet) public IntegerSet insertElement(int data) public IntegerSet deleteElement(int data) public boolean isEqualTo(IntegerSet iSet) public String toString()...
Question from Object-Oriented Data Structures Using Java 4th Edition Chapter 5 Question 30 Add the following methods to the LinkedCollection class, and create a test driver for each to show that they work correctly. Code each of these methods by accessing the internal variables of the LinkedCollection, not by calling the previously defined methods of the class.String toString() creates and returns a string that correctly represents the current collection. 1. Such a method could prove useful for testing and debugging...
DI Question 2 1.5 pts Which situations allow the client main() in the file my_program.py to access a method name, say func(), alone, as in x-func) without dereferencing it using prepended name like modname.func or x = some object. func () or x-SomeClass.func() O func) is defined in some module, say, "modname.py" and modname is imported into my_program.py using: from modname import func() is an instance method or a class method in a class, say SomeClass, defined in the same...
D Question 12 1.5 pts Check the true statements about NumPy arrays: O A single instantiated NumPy array can store multiple types (e.g., ints and strings) in its individual element positions. A NumPy array object can be instantiated using multiple types (e.g., ints and strings) in the list passed to its constructor O Memory freeing will require a double-nested loop. The number of bits used to store a particular NumPy array object is fixed. O The numpy.append(my.array, new_list) operation mutates...
python 2..fundamentals of python 1.Package Newton’s method for approximating square roots (Case Study 3.6) in a function named newton. This function expects the input number as an argument and returns the estimate of its square root. The script should also include a main function that allows the user to compute square roots of inputs until she presses the enter/return key. 2.Convert Newton’s method for approximating square roots in Project 1 to a recursive function named newton. (Hint: The estimate of...
PYHTON CODING FUNCTIONS HELP Part 2. Also need help with these
last functions. Requirements/restraints and the map referred to is
pictured in the screenshot. Need help with these 4 tasks:
Function 4:
def is_map(map) : given a map (see screenshot), does it meet
the following criteria? 1) it is a list of lists of values of type
int; 2) it has at least one row and one column; 3) it’s rectangular
(all sub-lists are same length); 4) only non-negative ints...
1) Extend the Binary Search Tree ADT to include
a public method leafCount that returns the number of leaf nodes in
the tree.
2) Extend the Binary Search Tree ADT to include a
public method singleParent-Count that returns the number of nodes
in the tree that have only one child.
3) The Binary search tree ADT is extended to
include a boolean method similarTrees that receives references to
two binary trees and determines whether the shapes of the trees are...
1 L, as a dynamical system (Notes from Assignment #2) We take our definition of dynamical system to be an "object" along with a specific set of modifications that can be performed (dynamically) upon this object. In this case, the object is a bi-infinite straight road with a lamp post at every street corner and a marked lamp (the position of the lamplighter). There are two possible types of modifications: the lamplighter can walk any distance in either direction from...
Hi i will give you a thumbs up if you do this problem correctly. Sorting Analysis Code and Essay Due: 4/22/2019(Monday) Introduction And now for something completely different. Different sorting algorithms are better for different size data sets. Other sorting algorithms are better for data sets of a specific type – for instance, data that is already ordered. In this assignment you will implement four different sorting algorithms and collect statistics for each of those algorithms while sorting multiple different...