У нас вы можете посмотреть бесплатно Python product value Program | Shop Program | Bangla Python Programming. или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
#Product_Value_Program #Simple Calculate Input #The input file contains two lines of data. In each line there will be 3 values: two integers and a floating value with 2 digits after the decimal point. #Output #The output file must be a message like the following example where "Product Value" means Value to Pay. Remember the space after ":" and after "R$" symbol. The value must be presented with 2 digits after the point. a,b,c=input().split() a,b,c=int(a),int(b),float(c) d,e,f=input().split() d,e,f=int(d),int(e),float(f) #comment #print (a,b,c) #print (d,e,f) total_one=b*c total_two=e*f ans=(total_one+total_two) print("Product Value: R$ {:.2f}".format(ans))