Answers for "python sinus"

2

cos in python in degrees

math.cos(math.radians(1))
# math.cos takes radians
# math.radians converts radians to degrees
Posted by: Guest on September-12-2020
17

python floor

import math
x = 3.86356
math.floor(x)
#Returns: 3
math.ceil(x)
#Returns: 4
Posted by: Guest on May-18-2020
0

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
Posted by: Guest on November-25-2020

Python Answers by Framework

Browse Popular Code Answers by Language