pascalabcnet/TestSamples/PythonABC_Samples/py_test5.py

17 lines
208 B
Python
Raw Normal View History

2015-05-14 22:35:07 +03:00
def mysum(a: float, b: float) ->float:
python
return a+b;
nohtyp fed
python
# int, float
i = 1
f = 123.456
# bool
b1 = True
b2 = False
print(b1, " ", b2)
res = mysum(12.34, 56.78)
print(res)
nohtyp