Before diving deep into the nitty-gritty details of a programming language or perhaps even a human language, we need
to understand its terminologie...
For further actions, you may consider blocking this person and/or reporting abuse
One thing I found strange about strings in Python is that there doesnβt seem to be much of a material difference between using single and double quotes. In other languages, string interpolation only works inside doubles and singles are treated as exact literals but strong formatting in python works differently (as Iβm sure youβll find soon). The only time I can see a need to choose one over the other is when you have quotes inside your strings. Maybe someone can correct me on this or point out the relevant idiom. Still, keep up the good work man. I waited to long to invest time in learning Python and I have to say itβs been a real joy since I started a few months ago.
After reading some articles and blog posts I found out that:
I am still figuring out the best practices but I personally like the
f
syntax.And yes learning python is a real joy. Hope I keep getting better at it :) Thanks for reading the blog.
Yeah me too. f'{}...' usually meets my needs and I only use format when I need to use printf style formatting or the expression I want to print is complex enough to impact readability inside a simple interpolation.
I believe the %-format approach is from python2 and str.format() is preferred in python3. You still see it a lot though.
"Variables must start with a lowercase letter" can you edit this line because Python variables can start with uppercase letters as well. the variable in python must start with a letter or underscore (letter can be a capital uppercase or lowercase), it can't start with a number or special character.
Thanks for your observation. I have now updated the line.
You're welcome.
Nice man, keep it going with this I'm enjoying this and learning with you.
I am glad you liked it π
So glad to follow you and learning from you
I am glad π
Too good man....
Thank you very much for this, enjoying and learning this with you.
So glad to hear that :)
"Keywords should not overwrite keywords" I'm assuming you meant "Variables should not overwrite keywords"