Tools, FAQ, Tutorials:
What Is Python Interactive Mode
What Is Python Interactive Mode?
✍: FYIcenter.com
Python Interactive Mode allows you to use Python
as an interpreted language.
When running in interactive mode, Python will:
Here is sample session of running Python in interactive mode:
Python 3.6.2 (v3.6.2:5fd33b5, Jul 8 2017, 04:14:34) [MSC v.1900 32 bit (Intel)]
on win32
Type "help", "copyright", "credits" or "license" for more information.
>>>
>>> 1 / 2
0.5
>>> 2 ** 3
8
>>> 17 / 3
5.666666666666667
>>>
>>> numbers = [2, 4, 6, 8]
>>> product = 1
>>> for number in numbers:
... product = product * number
...
>>> print('The product is:', product)
The product is: 384
⇒ Start Python in Interactive Mode
⇐ Using Python in Interactive Mode
2018-04-12, ∼2454🔥, 0💬
Popular Posts:
How to attach console to a Running Container using the "docker container exec" command? I want to ge...
How to use .NET CLR Types in Azure API Policy? By default, Azure imports many basic .NET CLR (Common...
Where to see some Examples of Invalid JSON Values? Here are some Examples of Invalid JSON Values: 1....
How to create a "Sign-up or Sign-in" user flow policy in my Azure AD B2C directory? If you want to b...
What is EPUB 3.0 Metadata "dc:description" Element? EPUB 3.0 Metadata "dc:description" is an optiona...