#===[imports]===#
import time
#===============#
#===[inputs]===#
grams_per_cubic_centimeter=int(input("what is your papers GSM?:"))
time.sleep(1)
sheets_in_signiture=int(input("how many sheets are in your signature?:"))
time.sleep(1)
signatures_in_textblock=(input("how many signatures are in your block:"))
#==============#
#===[calculations]===#
textblock_grams=sheets_in_signiture*grams_per_cubic_centimeter*signatures_in_textblock
textblock_lbs=textblock_grams/453.6
#====================#
#===[prints]===#
time.sleep(1)
print("text block in grams",textblock_grams)
time.sleep(1)
print(" text block in pounds",textblock_lbs)
Error:
line 15, in <module>
textblock_lbs=textblock_grams/453.6
TypeError: unsupported operand type(s) for /: 'str' and 'float'
I honestly am lost on the problem here does anyone have any thoughts?
