Creating Multiplication Table through List Comprehension in Python
tableOf = int ( input ( "Which table? " )) list = [ tableOf * i for i in range ( 1 , 11 )] print ( list )
Hello World! This blog shares my coding journey, learning to program, and sharing at the same time what I learn.