(PYTHON 3.8)
Let's assume I have a list, in which I have two items, both of which are list themselves(without knowing how many integers in each list, but they are the same length).
For example:
main_list = [[1,2,3],[4,5,6]]
main_list[0] = [1,2,3]
main_list[1] = [4,5,6]
how can I perform operations (take addition for example) on the inner lists to their matching indexes by altering the inner lists but not removing them from main_list(temporary variables are fine)
(main_list[0])[0] += (main_list[1])[0]
(main_list[0])[1] += (main_list[1])[1]
(main_list[0])[2] += (main_list[1])[2]
...and so on, using a loop, I can't hardcode it as i don't know the length of the lists(though I do know they are the same length)
to make main_list[0] = [5,7,9]
and main_list[1] stays the same
main_list = [[1, 2, 3], [4, 5, 6]]
for i in range(len(main_list[0])):
main_list[0][i] += main_list[1][i]
print(main_list)

(PYTHON 3.8) Let's assume I have a list, in which I have two items, both of...
I
need help with this problem this is what I put and these are the
errors I got
Given the lists list1 and list2 that are of the same length, create a new list consisting of the last element of listi followed by the last element of list2, followed by the second to last element of listi, followed by the second to last element of list2, and so on (in other words the new list should consist of alternating elements...
Python question. i have to start from an empty linked list, using the method addNodeEnd() to add the nodes containing the values (3*i+5)%17, where i is from 0 to 10. Then print the values of all the nodes in this linked list to the screen. This is the code that i created right here and i need help checking if i made any mistakes thanks! The code is below: class Node: def __init__(self, data): self.data = data self.next = None...
I want this using while loop
This using stringin python
Use list or some thing in python
Using list in python
I want answer as soon as posdible
E. Last Number time limit per test: 1 second memory limit per test: 256 megabytes input standard input output standard output You are given a sequence of positive integers aj, , 03, ... Print the last element of the sequence. Input The input consists of multiple lines. The i-th line contains a...
Write a python program: Ask for the encryption key. The key must be a list of numbers between 0 and N-1, where N is the number of entries in the key's list; for example, 5,4,3,2,1,0 has six numbers, and each digit 0-5 appears in the list. Asks for a line of text to encrypt. Use the transposition key to transpose each chunk of N letters in input text. If the input text is not a multiple of the key length,...
complete in C++ code Lists Many programming languages have some kind list data structure, which allows for insertion and deletion of elements, essentially an array that changes size. C++ has vectors, Java has the ArrayList, Python has lists (which is what they're called generically anyway). But how do they really work? All of these actually use arrays, which naturally have immutable lengths. Your Task Your task is to write a function, insert, which inserts a new item into an existing...
I need help writing this C code. Here is the description: Let's say we have a program called smart typing which does two things: The first letter of a word is always input manually by a keystroke. When a sequence of n letters has been typed: c1c2...cn and the set of words in the dictionary that start with that sequence also have c1c2...cnc then the smart typing displays c automatically. we would like to know, for each word in the dictionary,...
Greeting! Kindly help me to solve my finals in PYTHON, I don't have a knowledge in PYTHON, new student. Please, please, I'm begging, Kindly answers all the questions. I'm hoping to grant my request. Thanks in advanced. 1.) What is the output of the following snippet? l1 = [1,2] for v in range(2): l1.insert(-1,l1[v]) print(l1) a.) [1, 2, 2, 2] b.) [1, 1, 1, 2] c.) [1, 2, 1, 2] d.) [1,...
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...
Write a Python program named aIP.py which will read data from a file named wireShark.txt and extract all the pairs of source and destination ip addresses and output them in pairs to another file called IPAddresses.txt , one per line, listing source and destination. Example of output: Source Destination 192.168.1.180 239.255.255.250 Detailed Requirements: You will read from a file called wireShark.txt which, to avoid problems with finding paths, will be located in the same directory as your code You will...