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
2169 Views
See similar Python Mentoring tutors
Related Python Mentoring answers
All answers ▸
Firstly, my question is not Python related, but maths A-level related. I don't know how to change that in my profile but I would like to only tutor maths GCSE and potentially A-level. My question: Integrate sin(x)^3 over x=0 and x=pi/2.
Write a program that takes a value x and then outputs x Fibonnaci numbers. E.g. if x=6 output would be 1 1 2 3 5 8
Create an algorithm that can be used as a guessing game. Make sure to import random at the start.
How do I use format python code?