Lab#4 Ex1_chap8_and_ex3_chap10

Viewing All Docs

Title
Cumulative sum

#Ecercice 3 chapter 10 # def add_all(t): total=0 for x in t: total=total+x return total def cumulativesum(listnum): cumsum=[ ] istr=1 […]

Author: Author
Display letters backward

# Exercice 1 chapter 8 # function that takes a string as an argument and display the letters backward, one […]

Author: Author
Viewing 1-2 (of 2 total)