In this post, you will not learn how to create a project and/or make the entire structure of it understandable, however, all this knowledge is fully available in the video below (everything is very detailed so you can understand everything). explain the creation of a...
An IDE (Integrated Development Environment), which translated means, Integrated Development Environment, is a program that integrates the various tools needed for software development helping this entire process. in short, its main function is to help the programmer edit the code that will be used to...
In this post, you will learn how to work with bitwise operators so that you can use that same knowledge and thus evolve. bitwise operators operate one bit at a time and having a sense of what the binary code is is important; 1 True...
In this post, you will learn how to work with map so that you can use that same knowledge and thus evolve. the map function aims to map several data at once, returning a list referring to that same mapping. ''' print(pow(2, 12)) print(pow(3, 13))...
In this post, you will learn how to work with lambda so that you can use that same knowledge and thus evolve. lambda is used in the creation of anonymous functions and these are so called because they are not declared with the term βdefβ;...
In this post, you will learn how to work with multiple inheritance so that you can use that same knowledge and thus evolve. inheritance is a mechanism by which a class (subclass) can extend another class (superclass) to take advantage of its possible variables (attributes)...