Python X ๐Ÿ
42 subscribers
25 photos
2 videos
9 files
188 links
Download Telegram
Forwarded from Python Programming
Please open Telegram to view this post
VIEW IN TELEGRAM
app = Flask(__name__, static_url_path="/", static_folder='templates')

โ€”
app = Flask(__name__, static_url_path="/",)
This will be easy for small projects
#flask
In Python

True Division
5/2 => 2.5
5/2.0 => 2.5
โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”

Floor Division
5//2, => 2
5//2.0 => 2.0
โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”

โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”

In Other languages,
5/2 => 2
5/2.0 => 2.5
5/2 => 2
5/2.0 => 2.5