MRMohamed Riswan Mohamed Saheedinriswan.hashnode.dev·Feb 6, 2023 · 3 min readPython Literals: Understanding the Building Blocks of Python ProgrammingPython is a high-level programming language that is widely used for web development, data analysis, and artificial intelligence. One of the fundamental building blocks of Python programming like many other programming languages is literals, which are...00
MRMohamed Riswan Mohamed Saheedinriswan.hashnode.dev·Dec 28, 2022 · 2 min readHow to change the alias for the python command to point to Python 3 on a MacAfter installing Python3 in Mac OS, python can be used using the python3 command. You need to type python3 always instead of just typing python. you can follow these steps to change this: Open a terminal window and type the following command: which...00
MRMohamed Riswan Mohamed Saheedinriswan.hashnode.dev·Dec 18, 2022 · 2 min readCompiler VS InterpreterA compiler is a program that translates source code written in a programming language into machine code, which can be executed on a platform without having any special software to execute it. An interpreter, on the other hand, is a program that execu...00
MRMohamed Riswan Mohamed Saheedinriswan.hashnode.dev·Nov 23, 2022 · 2 min readSending Emails from Python Django using your gmail accountNormally applications need to send the verification code or welcome messages to the registering user for their application using emails. Sending email is not hard in if we are developing the backend of the application using Python or Python framewor...00