How can I iterate over function arguments without using *arg? I thought about making a list and then going over them. But this is too much work if I have a function with a lot of arguments. for example:
from typing import Union
def is_vormir_safe(threshhold: Union[int, float, complex], first_temp: Union[int, float, complex], \
second_temp: Union[int, float, complex], third_temp: Union[int, float, complex]) \
-> Union[int, float, complex]:
count = 0
# I want to iterate from the second function's argument to the last one
for arg in arg[1:]:
I tried making a list for the arguments but this is too much work.