Python Examples | Python Programs For Beginners | Python Tutorial For Beginners | Edureka

preview_player
Показать описание
This Edureka Live video on 'Python Examples' will help you understand how to write various basic programs in python and real-time uses of some of the Python libraries as well. Below are the topics covered in this video:
Introduction to python
Basic Python Examples
Prime numbers
Palindrome
Pyramid
Fibonacci Series
Bubble sort
Python Libraries
Programs using Python Libraries

#edureka #edurekapython #pythonexamples #pythonprogramming #pythontutorial #pythoncoding #pythoncourse #pythonforbeginners #PythonTraining

(450+ Hrs || 9 Months || 20+ Projects & 100+ Case studies)

------------------------------------------------------------

------------------------------------------------------------

How it Works?
1. This is a 5 Week Instructor-led Online Course,40 hours of assignment and 20 hours of project work
2. We have a 24x7 One-on-One LIVE Technical Support to help you with any problems you might face or any clarifications you may require during the course.
3. At the end of the training, you will be working on a real-time project for which we will provide you a Grade and a Verifiable Certificate!

About the Course

Edureka's Python Online Certification Training will make you an expert in Python programming. It will also help you learn Python the Big data way with integration of Machine learning, Pig, Hive and Web Scraping through beautiful soup. During our Python Certification training, our instructors will help you:

1. Master the Basic and Advanced Concepts of Python
2. Understand Python Scripts on UNIX/Windows, Python Editors and IDEs
3. Master the Concepts of Sequences and File operations
4. Learn how to use and create functions, sorting different elements, Lambda function, error handling techniques and Regular expressions ans using modules in Python
5. Gain expertise in machine learning using Python and build a Real Life Machine Learning application
6. Understand the supervised and unsupervised learning and concepts of Scikit-Learn
7. Master the concepts of MapReduce in Hadoop
8. Learn to write Complex MapReduce programs
9. Understand what is PIG and HIVE, Streaming feature in Hadoop, MapReduce job running with Python
10. Implementing a PIG UDF in Python, Writing a HIVE UDF in Python, Pydoop and/Or MRjob Basics
11. Master the concepts of Web scraping in Python
12. Work on a Real Life Project on Big Data Analytics using Python and gain Hands on Project Experience

Why learn Python?

Programmers love Python because of how fast and easy it is to use. Python cuts development time in half with its simple to read syntax and easy compilation feature. Debugging your programs is a breeze in Python with its built in debugger. Using Python makes Programmers more productive and their programs ultimately better.

Python has evolved as the most preferred Language for Data Analytics and the increasing search trends on python also indicates that Python is the next "Big Thing" and a must for Professionals in the Data Analytics domain.

Who should go for python?

Edureka’s Data Science certification course in Python is a good fit for the below professionals:

· Programmers, Developers, Technical Leads, Architects

· Developers aspiring to be a ‘Machine Learning Engineer'

· Analytics Managers who are leading a team of analysts

· Business Analysts who want to understand Machine Learning (ML) Techniques

· Information Architects who want to gain expertise in Predictive Analytics

· 'Python' professionals who want to design automatic predictive models

Рекомендации по теме
Комментарии
Автор

Sorry, there was a technical issue from our end while printing the Prime numbers. There was an extra break after 'else' statement. You can use the following code for the same.
a=int(input("enter number"))
a=int(input("enter number"))
if a>1:
for x in range(2, a):
if(a%x)==0:
print("not prime")
break
else:
print("Prime")
else:
print("not prime")

edurekaIN
Автор

Neat and clear explanation
I will give 10 out of 10 madam your teaching skills

gjbjagadish_
Автор

dear edureka!
once check your prime number program
it says 9 is prime number

devenderreddy
Автор

Thanks a lot for making such a good video🎥📹📹📹

priyangsuchakraborty
Автор

Can we code these examples in pycharm ?

musicatyourease
Автор

Thank you 😊❤️
Very helpful information you provided 👍

arbajshaikh
Автор

Thanku so much Edureka!! Learned a lot from this video.this video help to build a knowledge about python .i am wanna see all the videos .happy learning 😊🤗

namratanangare
Автор

I am very new to python.
Regarding Prime number codes.
I want to know why x is not defined as variable ? just like variable a

littleananya
Автор

Thank you that was a very interesting presentation and I found it to be a great orientation. Tomorrow
I will try it out!

francismannion
Автор

Super presentation is overall is excellent good session

ramnatesh
Автор

Sir can u provide the complete online course
.

jyothijyothi
Автор

Hello Edureka. When i given number 27 in Prime Number coding, its shows me result like prime number. 27 is not a prime number right? Please clarify me.

sivananthan
Автор

hey, can anyone tell me how the for loop works when a=2? Will if condition works it or go to the else part and how?

neelima
Автор

Thank you so much Edureka!! Learned a lot from this video. this video helped to build my knowledge about python. I am wanna see all the videos.
happy learning 😊🤗

laxmank
Автор

what is the use of :: in palindrome tell

UDITKANAK
Автор

When doing the palindrome exercise I get trying to enter "232" as a sequence:
Enter sequence232
Traceback (most recent call last):
File "Palindrome.py", line 2, in <module>
b=a[::-1]
TypeError: 'int' object has no attribute '__getitem__'


How should this be fixed and why does it differ from your example although I did the same?

naadde