Digital-Marketing-for-Startups

Digital Marketing Course for Startup Business in India

Digital Marketing Course for Startup Business in India Nowadays online marketing is important for every business whether it’s a large organization or any small scale startup in India. We are offering our new syllabus specially oriented for emerging startups. We understand the need of Digital Marketing Course for Startup, it requires high mileage in a …

Digital Marketing Course for Startup Business in India Read More »

machine learning kya hai hindi

मशीन लर्निंग क्या है

मशीन लर्निंग – परिभाषा मशीन लर्निंग एक ऐसी तकनीक है जिसमे कंप्यूटर को इस तरह से प्रोग्राम किया जाता है की वो इनपुट डाटा के आधार पे खुद से आउटपुट डाटा को प्रेडिक्ट कर सके | दिए गए इनपुट के आधार पे खुद से सीख सके | सॉफ्टवेयर डेवलपमेंट में जरुरत के आधार पे प्रोग्राम …

मशीन लर्निंग क्या है Read More »

Maths Module in Python Language

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 …

Maths Module in Python Language Read More »

Comparison Operators in Python Language

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 …

Comparison Operators in Python Language Read More »