02. 파이썬 변수 / 011 ~ 020 # 파이썬 300제 _ 11번 # samsung = 50000 # print("총 평가 금액 : {0}".format(samsung*10)) # 파이썬 300제 _ 12번 # total_siga = 298000000000000 # current_price = 50000 # PER = 15.79 # print(total_siga, type(total_siga)) # print(current_price, type(current_price)) # print(PER, type(PER)) # 파이썬 300제 _ 13번 # s = "hello" # t = "python" # print(s, t, sep="! ") # 파이썬 300제 _ 14번 # 8 # 파이썬 300제 _ ..