Python In Telugu For Beginners | Python Complete Course In Telugu | Python In Telugu | Python Suresh

  Рет қаралды 6,323

Suresh techs

Suresh techs

Күн бұрын

Teaching Notes - Complete Python Course
Day 1 Live Class: • Python In Telugu For B...
Java Course: • Java In Telugu 2022 | ...
Python 11 hours course: • Python In Telugu For B...
C Full Course: • c language for beginne...
NOTES👉 / @suresh-techs
#python #pythontelugu #pythonprogramming
Python In Telugu For Beginners | Python Complete Course In Telugu | Python In Telugu
Useful links:
=============
👉 What is programming:
• What Is Programming | ...
👉 Java in 10 minutes:
• Java In Telugu | Java ...
👉 Git Telugu course:
• Git in Telugu | Git Tu...
👉 HTML Full course Telugu:
• HTML tutorials in telu...
Chapters Overview:
================
Chapter 1:
What is programming? What is programming language? What is python programming language and who invented python programming language?
Chapter 2:
Install Python in windows, mac and Linux systems
Chapter 3:
How to use Python IDLE to write programs and execute the same. How to write your first python program in Python IDLE? What happens internally once submits a program for execution?
Chapter 4:
Will talk about commonly asked python programming interview questions in first three chapters(What is python programming, Install Python, Write first program in python)
Chapter 5:
Keywords and Identifiers is one of the most important concept in python. Keywords are the words that are reserved for specific use. We can't use keywords for other purposes. Identifier is the name given to identify a variable, class, function etc.
Chapter 6:
Statements, Indentation and Comments
Chapter 7: Variables are used to store data, it occupies some space in the memory when you declare a variable and they can be changed at any time. You need to remember certain conditions while declaring variables.
Chapter 8: Let's look few commonly asked interview questions from chapter 5,6 and 7
Chapter 9: Namespace and scope
Namespace: Unique name for each and every object
Scope: Scopes restrict using same variables in a single scope.
Chapter 10: Input and output is again one of the very important concept in Python. input() is the function used to take inputs from user and where as print() is the function used to display output.
We will talk each and every minute detail about input and output.
Chapter 11: Operators are used to perform various operations on values and variables. There are five different operators that we will look into.
Chapter 12: Most commonly asked questions from last three chapters
Chapter 13: Data type defines the type of the data. Built-In data types are the data types provided by default.
Chapter 14: Control flows helps in controlling the flow of the program. We will discuss about if, if else, if else if ladder, shorthand if else, for loop, while loop.
Chapter 15: Interview Questions
Chapter 16: Functions are used to group specific statements together for reusability. Functions again is one of most important concept in python.
Chapter 17: OOPS(Object oriented programming). Will talk about class, object, creating objects, self, constructors, types of constructors, class and instance variables, destructor, inheritance, types of inheritance, super keyword, access modifiers, polymorphism
Chapter 18: Exception handling is used handle syntax and runtime errors. We will discuss about try, except, else, finally to handle unexpected erros in the program.
Chapter 19: We will discuss about creating, modifying and deleting files. We use certain access modes to perform operations on files.
Chapter 20: Program execution starts from top of the program from the line where indentation is 0. If you want to specify the entry point from a specific function/place in the program we can use special variable _name_
Reference tags:
Python Tutorial For Beginners
Python Tutorial
Python For Beginners,
Python Full Course,
Python Programming,
python Projects,
Python For Beginners In Telugu,
Python,
Python Interview Questions,
Python For Data Science,
Python Telugu,
Python Telugu Tutorials
Like 👍, Comment ✍️, Share 👏 and Subscribe 🙏 to our channel. Let's help each other to create better opportunities in getting a Job.

Пікірлер
@suresh-techs
@suresh-techs 2 жыл бұрын
Day 1 Live Class: kzbin.info/www/bejne/a6jRg2ueq8qDpZo
@pavannaidu1613
@pavannaidu1613 2 жыл бұрын
Anna me num kavali
@harismart4320
@harismart4320 2 жыл бұрын
Bro ee course yenni days untadi
@kishorer937
@kishorer937 2 жыл бұрын
name: str = input("enter name") n = name[-2:] l:int = len(name) print(n*l)
@mounikathatavarthi3489
@mounikathatavarthi3489 2 жыл бұрын
Annaya nuv chaala baaga chepthav Anni topics cover chestham
@kachamsandeepsiva
@kachamsandeepsiva 2 жыл бұрын
Suresh gaaru YAML kudaa chaebuthaaraa please . Proper chaeppatledhu. Please cheppandi.
@youseries5891
@youseries5891 2 жыл бұрын
Java live class cheyandi ana
@santhoshbehra3343
@santhoshbehra3343 2 жыл бұрын
''' take a number as height if height < 167 then print "He is not eligible" if height >= 167 then print "He is eligible" ''' height = int(input()) if height >=167: print("He is eligible") if height < 167: print("He is not eligible")
@lakshmionlineservices341
@lakshmionlineservices341 2 жыл бұрын
Join as member and request python 11 hrs class but he didn't give access to view notes waste of membership
@deaspirant
@deaspirant 2 жыл бұрын
Suresh any idea of starting the sql series of classes
@-GopalakrishnaS
@-GopalakrishnaS 2 жыл бұрын
sir please upload R programing
@santhoshbehra3343
@santhoshbehra3343 2 жыл бұрын
rank = int(input()) if rank 1000 and rank < 10000: print("college2") elif rank > 10000 and rank < 20000: print("college3") elif rank > 20000 and rank < 50000: print("college4") elif rank > 50000 and rank < 100000: print("college5") elif rank > 100000: print("You don't get any college")
@santhoshbehra3343
@santhoshbehra3343 2 жыл бұрын
find odd or even numbers number = int(input()) if number%2 == 0: print("even") elif number%2 != 0: print("Odd")
@Carbonnnn180
@Carbonnnn180 2 жыл бұрын
Anna spring framework ,springboot are same???
@santhoshbehra3343
@santhoshbehra3343 2 жыл бұрын
''' print last two charaters of the string repeat the length ogg given string ''' name = input() n = len(name) result = name[n-2:] print(result * n)
@bala9770
@bala9770 2 жыл бұрын
we want the java series
@santhoshbehra3343
@santhoshbehra3343 2 жыл бұрын
for i in range(1): name = input() marks = int(input()) condition = (marks/1000)*100 if condition > 60: print(name,"pass") else: print(name,"failed")
@vivek5807
@vivek5807 2 жыл бұрын
Chinnavi kadu babayii
@santhoshbehra3343
@santhoshbehra3343 2 жыл бұрын
hii bro im not confident in python oops concept.. how to learn efficiently?
@santhoshbehra3343
@santhoshbehra3343 2 жыл бұрын
''' take a string suresh if input starts with "s" then print #Your character is good# and multiply first charater to length of string ''' name = input() conditon = name.startswith("s") if conditon== True: print("Your character is good") print(name[0] * len(name))
@tejab881
@tejab881 2 жыл бұрын
Hi Bro, your teaching is very good. I need python material but your UPI is not working. Can u pls share the correct one
@pallarajasekhar
@pallarajasekhar 2 жыл бұрын
Thanks sir
@karthikkanna3513
@karthikkanna3513 2 жыл бұрын
Oops concepts anna
@saimanikanta5279
@saimanikanta5279 2 жыл бұрын
Hai sir can you share the teams link l wish to join with this session
@exampediatelugu4294
@exampediatelugu4294 2 жыл бұрын
Sir ur videos assum 😍🥰 Pls do testing side
@ctricks8594
@ctricks8594 2 жыл бұрын
Bro Java part-3 release chey 🙏
@syedazam9781
@syedazam9781 2 жыл бұрын
Anna linux classes start chayandi anna plz
@saiganesh4399
@saiganesh4399 2 жыл бұрын
Anna Full Stack Series kuda chiyandi please
@RamaKrishna-kp7kr
@RamaKrishna-kp7kr 2 жыл бұрын
Sir, Please teach React JS
Cheerleader Transformation That Left Everyone Speechless! #shorts
00:27
Fabiosa Best Lifehacks
Рет қаралды 16 МЛН
REAL or FAKE? #beatbox #tiktok
01:03
BeatboxJCOP
Рет қаралды 18 МЛН
Mom Hack for Cooking Solo with a Little One! 🍳👶
00:15
5-Minute Crafts HOUSE
Рет қаралды 23 МЛН
Python Full Course for Beginners
6:14:07
Programming with Mosh
Рет қаралды 42 МЛН
Learn Python - Full Course for Beginners [Tutorial]
4:26:52
freeCodeCamp.org
Рет қаралды 45 МЛН
Python Tutorial for Beginners - Learn Python in 5 Hours [FULL COURSE]
5:31:30
TechWorld with Nana
Рет қаралды 6 МЛН