Im newb to python, can someone help me?
this error
can't multiply sequence by non-int of type 'str'
my code
this error
can't multiply sequence by non-int of type 'str'
my code
1 2 3 4 |
n,T,P = input ( "input n, T, P" ).split() R = 80 Luas = n * R * T / P print ( "Luas = ({}*{}*{})/{}={}" . format (n,R,T,P, Luas)) |