F
Size: a a a
F
А
arr = []
for s in input.split():
try:
num = int(s)
except ValueError:
try:
num = float(s)
except ValueError:
continue
arr.append(num)
AS
arr = []
for s in input.split():
try:
num = int(s)
except ValueError:
try:
num = float(s)
except ValueError:
continue
arr.append(num)
AS
arr = []
for s in input.split():
try:
num = int(s)
except ValueError:
try:
num = float(s)
except ValueError:
continue
arr.append(num)
i
А
A
if "." in m
А
if "." in m
a
if "." in m
AS
AS
A
[list(map(lambda x: int(x) if not "." in x else float(x), input().split())) for _ in range(a)]
AS
[list(map(lambda x: int(x) if not "." in x else float(x), input().split())) for _ in range(a)]
K
E
[list(map(lambda x: int(x) if not "." in x else float(x), input().split())) for _ in range(a)]
А
R3
AM
VA