Today (Monday) is the final chance to get 50% off all of my Python, data science, and Git courses, including the six cohorts of Weekly Python Exercise I’m offering in 2020. Don’t miss out; go to https://store.lerner.co.il/ and use the coupon code BF2019 to get the best prices I’m offering ...
As promised, the Black Friday sale has begun in my online store. Through Monday, my courses and books are all 50% off with the coupon code BF2019. This includes all eight of the video courses: Intro Python: Fundamentals (basic syntax and data structures)Intro Python: Functions (*NEW* writing and using functions)Comprehending ...
This coming Friday is “Black Friday,” when many stores offer big discounts on their products. I’m happy to say that from Friday through Monday, every course in my online store will be 50% off. This includes all eight of the video courses in my online store: Intro Python: Fundamentals (basic ...
I’ve recently appeared on a whole bunch of podcasts about Python, freelancing, and even (believe it or not) learning Chinese! If you’re interested in any or all of these subjects, then you might want to catch my interviews: Talk Python to Me: I spoke with Michael Kennedy (and Casey Kinsen) ...
Over the last year, I’ve taught in-person Python classes to companies in the US, Europe, Israel, India, and China. I’ve taught people from a variety of backgrounds, from absolute beginners to seasoned Pythonistas who want to improve their skills in new areas. And I’ve taught everything from intro Python to ...
Let’s say you’re writing a Python program that asks the user to enter a number, so that you can double it: >>> n = input("Enter a number: ") Enter a number: Just doubling what we get is a bad idea, though. If the user enters “123”, then we’ll get this: ...