iphython
Title
Question
Hellow Sir,
I have a problem, I don't know how I will install Ipython application on my window.
Python-3.4.3 Getting-started-with-IPython 00-01 min 0-10 sec
Answers:
Assignment-1
1. Commands starting with ab:
abs
2. Commands starting with a:
abs
all
any
asciiAssignment-2
round() documentation (usage):
round(number, digits)
number → value to be rounded
digits (optional) → number of decimal placesAssignment-3
Outputs:
a) round(2.48) → 2
b) round(2.48, 1) → 2.5
c) round(2.484) → 2
d) round(2.484, 2) → 2.48
Assignment-4
1. Typing round(2.484 and pressing Enter → SyntaxError (parenthesis not closed)
2. Cancel using → Ctrl + C
3. round(2.484, 2) → 2.48Assignment-5
1. IPython is a programming language similar to Python.
➡️ False
2. Which key combination quits IPython?
➡️ Ctrl + D
3. Character used to display documentation in IPython:
➡️ Question mark (?)

Login to add comment