Sandhya Kondmarekloudsan.hashnode.dev·Aug 18, 2024Python Counter Variables and Lesser Discussed VariablesPython programming mein hum sabne variables ka use kiya hai, lekin kuch specific types ke variables hote hain jo beginner coders easily miss kar dete hain. Aaj hum baat karenge counter variables aur kuch aur aise variables ki jo zyada discuss nahi ki...DiscussLoopingVariable,
Nabaranjan palatasinghnabaranjan1.hashnode.dev·Aug 16, 2024Python Basics Part - 1I am writing this blog on Python basics and trying to give some practical examples. Here let's discuss Syntax, rules, syntax errors, and practical code examples. synatx:-In Python, the syntax is like the rules of grammar for the computer—it tells the...Discuss·11 likes·45 readsPython
Sandhya Kondmarekloudsan.hashnode.dev·Aug 11, 2024How to Use If-Else Conditions in PythonPython ek aisi programming language hai jo beginners ke liye kaafi friendly hai. Agar aap programming mein naye hain aur Python seekh rahe hain, toh aapko if-else statements ke baare mein zaroor pata hona chahiye. Is blog post mein, hum Python ke if-...DiscussIfElseStatement
Sandhya Kondmarekloudsan.hashnode.dev·Aug 9, 2024Python Special Operators Explained: Number Systems and Problem Solving TipsIntroduction Python programming mein operators ka role crucial hota hai. Yeh operators data ko manipulate karne aur logical operations perform karne mein madad karte hain. Python mein kuch special operators bhi hote hain jo specific tasks ke liye des...DiscussPython special operators,
bellam anupythonbeginners.hashnode.dev·Jul 19, 2024Python Arrays and Built-in Math FunctionsArrays: Like other programming languages, Python doesn't have built-in support for Arrays, instead lists are used. But in lists the items stored is not required to be of same data type. Array module is used in order to create and manipulate arrays....DiscussPythonForBeginners
bellam anupythonbeginners.hashnode.dev·Jul 13, 2024Python DateTimeimport datetime module in order to work with dates. In the above output, it has year(2024), month(07) ,day(13), hour(11), minute(58), second(02) and millisecond(317731). To create the date use datetime() class and it requires 3 parameters yea...DiscussPythonForBeginners
bellam anupythonbeginners.hashnode.dev·Jul 3, 2024Python OOPSClasses: It is the means of bundling data and functionality together. It is basically the collection of objects. These are created by the keyword 'class'. Attributes are variables, and they are always public. These can be accessed by using dot(.)...DiscussPythonForBeginners
bellam anupythonbeginners.hashnode.dev·Jun 24, 2024Python Functions and Lambda Functions Day - 12Functions: it's a block of code which is executed only if it is called, it can have any number of parameters to pass the data. use def keyword to define a function and return inside the function to return a value. Any data type can be sent as an a...DiscussPythonForBeginners
bellam anupythonbeginners.hashnode.dev·Jun 18, 2024Python Built-in DataTypes - Day - 11There are 4 built-in data types which are used to store the collections of data, and those are Lists, Tuple, Dictionary and Set. Lists : used to store multiple values in single variable, starting from index 0. items are ordered, changeable and all...DiscussPythonForBeginners
bellam anupythonbeginners.hashnode.dev·Jun 10, 2024Python For Beginner's Day - 10contd... Logical Operators: used to combine the conditional statements. | Operator | Description | | --- | --- | | and | Returns True if both statements are true (x < 4 and x < 7) | | or | Returns True if one of the statements is true(x < 4 ...DiscussPythonForBeginners