GCSE Python Programming 2 - Variables & Maths

preview_player
Показать описание
Learn some more Python - variables, type casting, maths operators and more!
Рекомендации по теме
Комментарии
Автор

Excellent videos. Just one point at time 16.48 I think the maths is wrong. If the price before vat is 80 (with vat being 20%) then adding 20% to 80 is actually 96. To get 80 to 100 it’s 25%. 100/1.2 equals 83.3333- this is the ore at price of sales price is £100 and vat is 20 percent. Please make more python videos, great teaching.

rm
Автор

Great video! Thank you for helping me so much!

aryankinge
Автор

got both extention questions right im insane

onlyjuan
Автор

Long datatype doesn't work in python

Soul-qtbp
Автор

For extension 3, wouldn't it be Mins= (Total % 60) - 1 ?

debbiezangina
Автор

great video ( im doing a level computing btw)

gus
Автор

Could you please make more python tutorials, they are very helpful?

aryankinge
Автор

Hello s1perry, could this also be a suitable code for Extension 1?

Price = float(input ("What is the price of the item? "))
Multiplier = (20/100)
AddOnPrice = float((Multiplier)*(Price))
Total = float((AddOnPrice)+(Price))
print ("Before VAT, the cost was", (Price))
print ("VAT included, you have paid", (Total))

Somehow though, I couldn't find a way to implement the "£" sign w/ithout getting an "invalid syntax" message. Help on this is much appreciated!!

jaydendsouza