Answers for "python float int type"

2

python typing as int or float

from typing import Union
# Usage:
Union[type1, type2]

# Exemple:
weight : Union[int, float]
# or
def return_triple( number : Union[int, float]) -> Union[int, float]:
	return number*2
Posted by: Guest on April-07-2021
2

float to int in python

# convert float to int 

int(2.0) #output :2
Posted by: Guest on May-27-2020

Python Answers by Framework

Browse Popular Code Answers by Language