by Itika Sarkar | Apr 1, 2020 | Python
In this article, we will discuss on variables of Python. The below contents are of this article: IntroductionVariable NamesDynamic Typing Assign Value to Multiple VariablesGlobal Variables Introduction In order to store values and manipulate it as it required we need...
by Itika Sarkar | Apr 1, 2020 | Python
In this article, we will discuss on Python tuple. The following are the contents of this article: IntroductionAccess itemNegative IndexingRange of indexingRange of negative indexingTuple lengthJoin tuplesRemove ItemLoop through tupleCheckingChange...
by Itika Sarkar | Apr 1, 2020 | Python
In this article, we will discuss on the python sets with proper explanations and examples. The following is the contents of this article. IntroductionAccess itemCheck itemLength of a setAdd itemremove itemJoin two setsSet constructorSet method Introduction A...
by Itika Sarkar | Apr 1, 2020 | Python
In this tutorial, we are going to tell all about Python list. The following is the content of this article. IntroductionNegative indexingAccess itemsRange of indexChange itemLoop in listList lengthAdd ItemRemove ItemCopy a listJoin listMethods Introduction In Python,...
by Itika Sarkar | Apr 1, 2020 | Python
In this article, we will know all about Python data type and there use with suitable examples. The contents of the article is shown below: IntroductionNumeric typeSequence typeBoolean DictionaryPython castingMutable & Immutable objects Introduction Variables can...
by Itika Sarkar | Apr 1, 2020 | Python
In this article, we are going to tell about the if-else loops used in Python. So, before coming to loops we first need to know what is loop and why we need a loop. If you have a prior idea of knowing other programming languages you can get it. That when we want to...
by Itika Sarkar | Mar 31, 2020 | Python
This article describes Python user input. It means that the programmer can give input and according to that input Python will give output. For Python 3.6 and the above versions, the input() method is used. But for below 3.6 we use raw_input() method. The below example...
by Monisha Macharla | Mar 31, 2020 | Raspberry Pi
There are two kinds of Input and Output pin numbering for the Raspberry pi. One is the BCM and the other is BOARD. Basically these pin numberings are useful for writing python script for the Raspberry Pi. GPIO BOARD- This type of pin numbering refers to the number of...
by Jyotsna Rajaraman | Mar 31, 2020 | Raspberry Pi
As we know, your Raspberry Pi can be used for a plethora of things, one such application is live streaming video from your Raspberry Pi camera over the web. This is a fun project to do for all ages, and implement in and around the house. And, if integrated with motion...
by Sashreek Shankar | Mar 31, 2020 | MQTT
IoT is all about a group of devices communicating with each other and the cloud through the internet, but how is this even possible? Data that is generated by a device has to be sent to the cloud through a medium – the internet. The rules that are followed to...