Magento Website ka Seo kaise kare
How to do SEO of a magento website Go to this URL where there is a demo of magento 139.162.47.20/magento23/admin And follow the instructions in this video :
How to do SEO of a magento website Go to this URL where there is a demo of magento 139.162.47.20/magento23/admin And follow the instructions in this video :
मशीन लर्निंग – परिभाषा मशीन लर्निंग एक ऐसी तकनीक है जिसमे कंप्यूटर को इस तरह से प्रोग्राम किया जाता है की वो इनपुट डाटा के आधार पे खुद से आउटपुट डाटा को प्रेडिक्ट कर सके | दिए गए इनपुट के आधार पे खुद से सीख सके | सॉफ्टवेयर डेवलपमेंट में जरुरत के आधार पे प्रोग्राम …
How to Import Maths Module in Python Maths module is already included with python installation. To import any module in your program you must use: import <modulename> To import Math module write: >>>import math Example >>> print(pi) NameError: name ‘pi’ is not defined >>> import math >>> print(math.pi) 3.141592653589793 >>> print(pi) NameError: name ‘pi’ is …
Typecasting in Python It is the process of changing one datatype to another data type. Functions used to do typecasting. str(x) – To change x to string int(x) – To change x to integer ( x must be float or bool but not complex or string) float(x) – To change x to float ( x …
Typecasting in Python – Changing Data Types in Python Read More »
How to Take User Input in Python We can take user input in python using the console window or we can also create GUI using python. To create GUI windows in Python we use a library or module called Tkinter. To take user input in python using console window we use and built in function …
Comparison Operators In programming comparison operators are used to compare two or more values. These are comparison operators used in Python. Equals To – “==” To check whether one value is equal to other value. The answer is returned in Boolean format. Example: >>> name = “Mohit” # Assignment >>> name == “Mohit” # Comparison …
Here are the Assignment Operators in Python Language Assignment Operators are used to assign values to variables. In simple words, putting value in a variable. These values can be of any data type. Equal to Operator – ‘=’ Equal to operator is used to assign any value to a variable. Example – >>> x = …
Arithmetic Operators Addition – ‘+’ – To Sum two or more numbers >>> x = 56 >>> y = 45 >>> x + y 101 Subtraction – ‘-’ – To Subtract two or more numbers >>> a = 345 >>> b = 123 >>> a – b 222 Multiplication – ‘*’ – To find the …
Operators in Python language Operators are used to perform specific actions in programming languages. Here are names of some common operator in Python: Arithmetic Operators ( Also known as math operators ) Assignment Operators ( To assign values to variables ) Comparison Operators ( To compare value of two or more variables ) Logical Operators …
Variables are used to store values in Python. These variables can be used later on in the program for computing purpose. Variables have a name, value and a memory location in computer. For Example: X = 56 Here X is the Variable Name and 56 is its value. = is known as assignment operator. The …