woche12 > master: code py - imports von random methoden

This commit is contained in:
RD 2022-06-21 19:02:41 +02:00
parent c2cb11a141
commit 5c43419890
1 changed files with 4 additions and 0 deletions

View File

@ -10,6 +10,8 @@ import math;
import numpy as np;
import pandas as pd;
import random;
from random import uniform;
from random import choice as uniform_random_choice;
from tabulate import tabulate;
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@ -22,5 +24,7 @@ __all__ = [
'np',
'pd',
'random',
'uniform',
'uniform_random_choice',
'tabulate',
];