This document is to guide those people who want to get started or have just started with competitive programming. What is Competitive Programming? Here is the definition of Competitive Programming from Wikipedia: Competitive programming is a mind sport usually held over the Internet or a local network, involving participants trying to program according to provided … Continue reading Getting Started With Competitive Programming
Tag: Python
Setting Up a task Queue using Celery and RabbitMQ
Celery is an asynchronous task queue/job queue based on distributed message passing. It is focused on real-time operation, but supports scheduling as well.
Through Python3(Functions)
This post is about functions and functional arguments. This blog briefly covers the how to define a function and its usage, how to pass arguments through a function and types of functional arguments. It also covers a special function called Generator function.
Through Python3(Altering Contents of Mutable and Immutable Objects)
This blog explains how mutable and Immutable objects are different and teaches a correct way to copy mutable objects.
Through Python3(Day 2)
Hola Everyone, the Previous day we learned about how everything in Python is an object and about Mutable and Immutable Datatypes. If You haven’t the go through the link and read about them and come back again to join us.
Through Python3(About Operators)
Hola Everyone, Today we will be talking about Operators in Python. Operators are special symbols in Python that carry out arithmetic or logical computation. Operators are used to perform operations on values and variables. Operators can manipulate individual items and returns a result.
Through Python3(Day 1)
This blog will be guiding you to learn python from a beginner to advance level Python developer. Python is an Object-Oriented Programming Language. Everything in Python is an object i.e. variable or functions or even the whole code.