Let's start with python

🚀 Welcome to TechLearn India, your go-to destination for insightful tech tutorials, coding tips, and all things related to web development! 🌐💻
Who We Are: TechLearn India is a passionate community dedicated to fostering knowledge and skill development in the ever-evolving world of technology. Our mission is to empower learners, beginners to seasoned developers, with the latest tools, frameworks, and best practices in the field of web development.
What We Offer: 📚 Tutorials & Guides: Dive deep into our step-by-step tutorials, designed to make complex concepts accessible and enjoyable.
💡 Coding Tips & Tricks: Stay ahead of the curve with our curated collection of coding tips and tricks, helping you optimize your workflow and write cleaner, more efficient code.
🌐 Tech Insights: Explore the latest trends, insights, and news in the tech industry. We keep you informed about the cutting-edge technologies that shape the digital landscape.
Why TechLearn India: At TechLearn India, we believe in the transformative power of learning. Whether you're a beginner or a seasoned developer, our content is tailored to inspire, educate, and elevate your skills. We're committed to creating a supportive and inclusive learning environment for all tech enthusiasts.
Hello everyone, today we are going to learn about Python programming language. Let’s start – So python is general-purpose, dynamic and high-level programming language. It was created by Guido van Rossum and has published in 1991.
Basic reasons why we use python:
• It is easy and simple.
• It is an open-source language that has a wide range of libraries and frameworks.
• It supports GUI programming.
Now we will discuss the benefits and limitations of python, saying about the benefits as it is a high-level programming language it is user-friendly. Also, it has a syntax like the English language. A non-programmer can easily learn python rather than some other programming language. It supports an object-oriented approach and it makes the language much easier.
Saying for limitation basically, its execution speed is slower compared to some other programming languages.
Let’s run a simple program and have fun;
Say we want to display “ hello techlearners “
• Open the notepad and write – print(“hello techlearners”)
• now we have to save the file with a python extension i.e ( .py ) save as – hello.py (any name )
• Copy the path
• Open CMD (Command Prompt)
• Paste the path of the program and write python program_name.py ; as our program’s name is hello.py
we write
python hello.py
and we get the result
hello techlearners
...Hurrah, we have done our first python program.
thank you for reading the blog.




