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()
from flask import Flask app = Flask(__name__) #In Flask, URL rules can be added using either the @app.route() decorator or the app.add_url_...
No comments:
Post a Comment