Why my bot did print the information

in my actions file I write this …

    print(" Temperature (in kelvin unit) = " +
                 str(current_temperature) +
        "\n atmospheric pressure (in hPa unit) = " +
                 str(current_pressure) +
        "\n humidity (in percentage) = " +
                 str(current_humidiy) +
        "\n description = " +
                 str(weather_description)) 
     print( location)

but when I communicate this value only printed in terminal the bot does print them . thanks for advance