Example #1
0
def main_fun():
    var1 = task4.e_number(1000)
    math_fun(var1)
Example #2
0
@author: Marco
"""

'''Task 5'''

'''Copy the program you wrote for Task 3 and save it as task5.py. Modify the 
function you wrote to take π as a default argument. Include in this program 
the function you wrote to generate e. Call the function that produces e, and 
have it return a value. Pass that value of e to the function where you made π 
the default argument.'''

import math
import task4


def forms_of_pi(number=math.pi):
    '''function that gets any floating point number, such as "pi", and retrieves
    it in the forms of string, integer and float rounded to just one number after
    the decimal point'''
    # string    
    print(str(number))
    # integer
    print(int(number))
    # rounded
    print(round(number,1))
    # floating point
    print(number)

if __name__ == '__main__':
    number = task4.e_number()
    forms_of_pi(number)
Example #3
0
def main():
    number = task4.e_number()
    forms_of_pi(number)