def findSLTP():
c = int(input("Enter current market price : "))
print("SLTP for " + str(c) + " at 6% loss should be : " + str(int(c - 0.06*c)))
x = input("Press Enter to exit application ")
findSLTP()
Removing Dictionary Items Dictionary items can be removed using built-in deletion methods that work on keys: del : removes an item using ...
No comments:
Post a Comment