PCPooja chaudhariinpoojac.hashnode.dev·Jan 31 · 5 min readPython Data Structures in Machine LearningWhen learning Machine Learning with Python, it’s common to study lists, dictionaries, arrays, and DataFrames as isolated language features. In real ML work, however, these structures are not interchangeable. Each one appears naturally at different st...00
PCPooja chaudhariinpoojac.hashnode.dev·Jan 31 · 12 min readOperatorsIn this tutorial, I am going to discuss about various types of operators in python, their use and precedence in an expression. Operators In every programming language, we have a set of operators. Operators are specifically the special characters whi...00
PCPooja chaudhariinpoojac.hashnode.dev·Dec 14, 2025 · 4 min readVariables in PythonIn this tutorial, we are going to discuss about variables and expressions in python. Variables in Python A variable in python is a named location which refers to a value and these values can be used and processed during program run. A variable is not...00
PCPooja chaudhariinpoojac.hashnode.dev·Oct 7, 2025 · 3 min readStatements and Comments in PythonIn this tutorial, we will discuss about different statements and comments in Python. In every programming language there are different types of statements. Also comments are used by programmers to increase the readability of the code. Statements in P...00
PCPooja chaudhariinpoojac.hashnode.dev·Oct 3, 2025 · 4 min readInput and Output in PythonIn this tutorial we will discuss about how to take input and show output in python. In a program taking an input from the user ensures that user is able to use the program as per their need. And giving the output in proper format helps user to unders...00