Top 5 Software Companies of Nepal / Best IT Company in nepal / IT company near me It is very hard to find the exact number of IT company here in Nepal. IT companies are gradually increasing. We have listed the Top IT company with their productions , number of…
Data science/ machine learning/ data science and machine learning/ python / django /colzlife / artificial intelligence/ Free udemy course on Data Science and Machine Learning The Data Science is used to make decisions and predictions making use of predictive prescriptive analytics, causal analytics and machine learning. Data Science is a…
You are to write a program that reads in lines of input using scanf or cin, and file redirection, process the data, and then outthe results using printf or cout. This means you can use C or C++ or any other style I/O as is your personal preference. Each line…
All codes below to be typed on commandprompt or windows powershell Step 1: pip install django (install django ) Step 2:cd desktop (enter desktop directory) Step 3:django-admin startproject django8am (to create new project..here django8am is the project foldername ) Step 4:cd django8am (enter django project folder) Step 5: py manage.py…
File handling is the important chapter to read in the programming language which helps to read, write files along with many other file handling options, to operate on files. The concept of file handling has stretched over various other languages, but the implementation is either complicated or lengthy, but alike…
Decorator is a powerful in object oriented programming language since it allows programmers to modify the behavior of the function or class. click here to see function In decorators functions are taken as the arguments into another functions and then called inside the wrapper function Syntax for decorator In the…
Function is the set or block of statements that takes input print values or do some functionalities to perform a task. In a programming language we create a function to put some commonly or repeatedly done task together so that instead of writing the same code again and again for…
loop is exactly a iteration, which means executing the same block of code over and over, potentially many times. In python we use while and for loop for repeating the process. For Loop For loop is the type of iteration to repeat the process, In python we use for and…
If else is the condition used in different programming language, Here in python we use if ,elif and else keywords to understand by interpreter. Mostly used python if else conditions Equals: a == b Not Equals: a != b Less than: a < b Less than or equal to: a <= b Greater than: a…
Python is a high level and general purpose programming language. Python is created by Guido van Rossum in 1991. Python code is easy to learn with its notable use of significant white space. PYTHON FOR BEGINNER Download python from its official site with the latest update https://www.python.org/downloads/ The best interpreter…