170k views
5 votes
Write the corresponding Python expression of the following mathematical expression.


1 Answer

4 votes

Answer:

The code:

# Import math Library

import math

# Print the value of 2pi

print (math.pi * 2) ## output would be: 6.28318530718

Step-by-step explanation:

User Apaul
by
5.4k points