math.sin python code example

Example 1: how to import math in python

import math

Example 2: sin function in python does it values in radians

math.sin(value) # value must be in radians ,1 degree = 0.0174533 radians

Example 3: python mathematics

// Python mathematical functions include but are not limited to:
print(10+10) // Returns 20 (Addition)
print(10*10) // Returns 100 (Multiplication)
print(10/10) // Returns 1 (Division)
print(10**10) // Returns 10000000000 (10 to the power of 10, 10^10)
print(10-10) // Returns 0 (Subtraction)
print(10>100) // Returns False (If A is greater than B)
print(10<100) // Returns True (If A is less than B)
print(10==10) // Returns True (If A is equal to B)

import math // Required for the function below
print(math.pi) // Returns the first 15 decimal places of Pi

Example 4: find sin python3

import fnmatch
import os
from typing import List


def find_files(pattern, path) -> List[str]:
    """Takes a shell pattern and a path and returns a list of file path strings"""
    result: List[str] = []
    for root, dirs, files in os.walk(path):
        for name in files:
            if fnmatch.fnmatch(name, pattern):
                result.append(os.path.join(root, name))
    return result

Tags:

Css Example