Python programming codes
43 subscribers
25 photos
1 video
83 files
82 links
Uploading All programming codes are updating Daily
ask doubts in comment box 🎁☑️
Download Telegram
#calculate the chicken rate
n_Gram = int(input("enter the weigth of grams : "))

cost = int(input("enter the cost value: "))
one_GramCost = cost/1000

print("the {} grams weight is {} ".format(n_Gram,one_GramCost*n_Gram))