Trying to translate BASIC code written in the 1990's to Python. I keep coming across two symbols, ! (exclamation mark) and . (period mark). I can't find any documentation online on what they do. I have the code running but some of the outputs are not as expected - I am wondering if these might be the issue as I previously thought that the period mark may just be a typo for a multiplication.
Examples:
QWLOST = (((TW-TDAO)/(TWRT-TDAOR))^1.25)*((VISR/VIS)^0.25)**.**(PW+PE)*DT
TFAVE = (TTO+TBO)/2!
Thanks!