Posts by Alisson Jonathan • 23 points
2 posts
- 
		1 votes1 answer247 viewsQ: How to sum the values of each element of 2 lists with List ComprehensionI have 2 lists and I want to add the element of each position on list a to the element of the same position on list b, only using <b>List Comprehension </b> a = [1,2,3,4] b = [5,6,7,8]… python-3.xasked Alisson Jonathan 23
- 
		0 votes1 answer56 viewsQ: Why doesn’t he run my read() since I opened it for reading and writing at the same timeThe code below allows me to write, but does not show me the content of what I wrote in the file with the read method() filename = input('Informe o nome do arquivo: ') filename += '.txt' arquivo =…