Python Programming

Posts related to Python programming language

Python Course Syllabus

If I’m going to create my own Python Tutorial Course, here’s what I’d probably use as course syllabus: Basics hello, world operators & expressions variables & scope data types type casting data structures value comparison multiple assignment comments user input output formatting indentation decision making (branching) error handling Intermediate function loop args & kwargs importing …

Python Course Syllabus Read More »

Generate Temporary Password using Python

Today we’re going to create a function that you can use in your applications that involves giving users temporary password. It’s not limited to password generation though, you can use this function to generate a meal ticket or transaction number, etc. By the way, this assumes you have read the previous blog. If not, here’s …

Generate Temporary Password using Python Read More »