Answers
>
Python
>
Mentoring
>
Article
What is the outcome of the following code? print(2*[3,4,5])
[3, 4, 5, 3, 4, 5] will be printed.
GH
Answered by
George H.
•
Python tutor
2228 Views
See similar Python Mentoring tutors
Related Python Mentoring answers
All answers ▸
Implement a fibonacci function which calculates the nth number of the fibonacci sequence.
What is the difference between a cycle "if" and "while"?
Explain the difference between local and global variables
Create a program that generates prime numbers between two integer boundareis