Skip to main content

About Us

About me

Hey there, I am Shreejata Gupta 🧑; the founder of SGPython. I am an Indian by nationality and live in Darjeeling, btw, my home is in Purba Bardhamman district 😅 of  West Bengal. I am 16 years old and I like to write and do programming a lot. I am actually thinking to start skateboarding this year. I live with my parents and my uncle, aunt, grandmother and grandfather live in my hometown. I started python programming in Python a year or two ago and then fell in love with it. I have a brilliant mentor with me named Mr. Puskar Karmakar who is my Computer Science (CS) teacher. But, I know there are many underprivileged children who despite of having the talent to do a lot better in the field of Python can't afford to have a good mentor like mine; therefore, the motive of my blog is to provide a free and best quality Python codes and related theory topics absolutely for free-of-cost. My actual goal for this blog is to make it better day-by-day and provide more and more nice content on Python 🐍.

Why you should choose us?

It is obvious that there are many websites available for learning Python; but in my blog I try to keep the very refined materials in my posts whether it is code or any theory topic, I try my best to make the materials lucid for everyone, try to represent the programs and their outputs as visuals and always keep my codes in code snippets with a dark color-scheme for everyone to understand easily. Also, I try to keep pushing regular updates whenever I am free from the works of real world.

Comments

Popular posts from this blog

Our view towards Python (as a programming language)

  Python - The language of the future Introduction When we hear the term programming language, we usually talk about high-level programming language which are those programming language having a lucid (or easy-to-read) syntax and are later converted to low-level language (binary) , which is understandable by the computer.  Programming language has always been an area of interest over the passing years since the very early days of ' Fortran ' (created by John Backus at  IBM ). To this day, dozens of programming language has been created by different 'Computer Scientists' around the world. What is Python? What is Python? Many of you will describe a large scary snake 🐍, which isn't actually wrong 😅. But here we are talking about a programming language. Similarly, Python is also a high-level and interepreted programming language created by  Guido van Rossum in the late 1980s . It was first released in 1991 as a successor to ABC Programming language . It known fo...

For Loops

 The for loop By  polygraphus  on  shutterstock Def: The for loop is also known as the counting loop and is designed to process the items of any sequence, such as a list or a string, one by one. General form of for loop: The general form of the for loop is given below:      for <variable> in <sequence>:          statements to repeat

Character Case Swapping (PCTS)

 Python Codes The Series -1 ©Photo by wiki commons Not only in Python but also in the day-to-day life, the letters in English alphabets are characterized into two cases viz. upper case and lower case. Our first program will be a general fun program for the beginners. In this program, we will learn to swap the cases of the letters of English alphabets being entered by the user with the help of a few lines of Python code. For example: If the user enters: " hoLa AmIGo" , the python program would convert this string into " HOlA aMigO" . The Program is noted below: string=input("Enter a string :") length=len(string) s='' for i in range(length): if string[i].islower(): s=s+string[i].upper() elif string[i].isupper(): s=s+string[i].lower() else: s=s+string[i] print(s) FOR QUICK REFERENCE: The len() function gives the length of the string and the the input() function takes input from the user. Hope you like i...