@avezqureshi14
Love to create Websites using MERN
Nothing here yet.
Nothing here yet.
Jan 4, 2025 · 7 min read · You might already be familiar with some Python functions listed here, but you're sure to discover more useful details about them as you read on. Function 1: print() Function The print() function is often the first function you learn in Python, and it...
Join discussion
Jan 4, 2025 · 3 min read · Example 1: Creating a List with a Range Traditional Way: values = [] for x in range(10): values.append(x) print(values) # [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] Using List Comprehension: values = [x for x in range(10)] print(values) # [0, 1, 2, 3, 4, 5,...
Join discussionJan 2, 2025 · 4 min read · Python uses two main types of memory: Stack Memory Stores references to functions, methods, and calls. Private Heap Memory Stores the actual objects and values. All the refrences , functions , methods and calls which are defined are stored in sta...
Join discussionDec 31, 2024 · 7 min read · Mutable Data Types Definition: Objects of mutable data types can be changed after their creation. You can modify the object without creating a new one. Examples: list, dict, set, bytearray Behavior: You can change, add, or remove elements in plac...
Join discussion