3xrgr8bej 

   
   

Output:

n x
1 9.25
2 8.875
3 9.0625
4 8.96875
5 9.015625
6 8.9921875
7 9.00390625
8 8.998046875
9 9.0009765625
10 8.99951171875
11 9.000244140625
12 8.9998779296875
13 9.00006103515625
14 8.999969482421875
15 9.000015258789062
16 8.999992370605469
17 9.000003814697266
18 8.999998092651367
19 9.000000953674316
20 8.999999523162842
21 9.000000238418579
22 8.99999988079071
23 9.000000059604645
24 8.999999970197678
25 9.000000014901161
26 8.99999999254942
27 9.00000000372529
28 8.999999998137355
29 9.000000000931323
30 8.999999999534339
31 9.00000000023283
32 8.999999999883585
33 9.000000000058208
34 8.999999999970896
35 9.000000000014552
36 8.999999999992724
37 9.000000000003638
38 8.999999999998181
39 9.00000000000091
40 8.999999999999545
41 9.000000000000227
42 8.999999999999886
43 9.000000000000057
44 8.999999999999972
45 9.000000000000014
46 8.999999999999993
47 9.000000000000004
48 8.999999999999998
49 9.0
step = 49
err = 0.0
root = 9.0
by

Python Online Compiler

Write, Run & Share Python code online using OneCompiler's Python online compiler for free. It's one of the robust, feature-rich online compilers for python language, supporting both the versions which are Python 3 and Python 2.7. Getting started with the OneCompiler's Python editor is easy and fast. The editor shows sample boilerplate code when you choose language as Python or Python2 and start coding.

Taking inputs (stdin)

OneCompiler's python online editor supports stdin and users can give inputs to programs using the STDIN textbox under the I/O tab. Following is a sample python program which takes name as input and print your name with hello.


About Python

Python is a very popular general-purpose programming language which was created by Guido van Rossum, and released in 1991. It is very popular for web development and you can build almost anything like mobile apps, web apps, tools, data analytics, machine learning etc. It is designed to be simple and easy like english language. It's is highly productive and efficient making it a very popular language.

Tutorial & Syntax help

Loops

1. If-Else:

When ever you want to perform a set of operations based on a condition IF-ELSE is used.


Note:

Indentation is very important in Python, make sure the indentation is followed correctly

2. For:

For loop is used to iterate over arrays(list, tuple, set, dictionary) or strings.

Example:


3. While:

While is also used to iterate a set of statements based on a condition. Usually while is preferred when number of iterations are not known in advance.


Collections

There are four types of collections in Python.

1. List:

List is a collection which is ordered and can be changed. Lists are specified in square brackets.

Example:


2. Tuple:

Tuple is a collection which is ordered and can not be changed. Tuples are specified in round brackets.

Example:


Below throws an error if you assign another value to tuple again.


3. Set:

Set is a collection which is unordered and unindexed. Sets are specified in curly brackets.

Example:


4. Dictionary:

Dictionary is a collection of key value pairs which is unordered, can be changed, and indexed. They are written in curly brackets with key - value pairs.

Example:


Supported Libraries

Following are the libraries supported by OneCompiler's Python compiler

NameDescription
NumPyNumPy python library helps users to work on arrays with ease
SciPySciPy is a scientific computation library which depends on NumPy for convenient and fast N-dimensional array manipulation
SKLearn/Scikit-learnScikit-learn or Scikit-learn is the most useful library for machine learning in Python
PandasPandas is the most efficient Python library for data manipulation and analysis
MatplotlibMatplotlib is a cross-platform, data visualization and graphical plotting library for Python programming and it's numerical mathematics extension NumPy
DOcplexDOcplex is IBM Decision Optimization CPLEX Modeling for Python, is a library composed of Mathematical Programming Modeling and Constraint Programming Modeling


© Copyright 2025 One Compiler Pvt. Ltd. | Privacy Policy | Terms & Conditions