find type 1 Question Find the type of a where a=”1234″ in progress 0 Python YashikaKhurana 55 years 2 Answers 739 views Master 0
Answers ( 2 )
type(a) returns str
a =”12255″
print(type(a))
output = str