SlideShare a Scribd company logo
1 of 19
INTRODUCTION TO PYTHON
JAYATI VIJAYWARGIYA
Hum TumHare BaaP Hain
Variables and data types in python
INTEGER – FLOAT – STRING
myint = 24
myfloat = 24.0 OR myfloat = float(24)
mystring = ‘Jayati‘ OR mystring = “Jayati“
Addition of Numbers and of Strings
Five = 5
Seven = 7
Twelve = Five + Seven
J = “Jayati“
V = “Vijaywargiya“
JV = J + " " + V
List in python
 Similar to array we have list in
python
 mylist = []
 mylist.append(10)
 mylist.append(20)
 print(mylist[0])
 print(mylist[1])
 print(mylist)
Output –
10
20
[10 , 20]
Printing a variable
 second_name = Vijaywargiya
 print("The second of Jayati is %s" % second_name)
 H.W.
Find out the notations used for integer and float ??
Basic operators
 number = 1 + 2 * 4 / 6
 remainder = 101 % 5
 sq = 7 ** 2
 cube = 2 ** 3
 Addition = “Python" + " " + “Tutorial“
 Masty = “Masty" * 10
 vovels = [‘a’, ‘e’]
 consonents = [‘b’ , ‘c’]
 Letters = vovels + consonents
print([‘baar’, ‘baar’, ‘dekho’ ] * 3)
Operators in python
1. Conditional op.
x = 2
print(x == 2)
Output – True
2. Boolean op. – and / or
name = "Joyati“
age = 24
if name == "Jayati" and age == 23:
print(“Hii Jayati Vijaywargiya.")
if name == "Jayati" or name == “Pallavi":
print(“Hii Pallo")
in , is and not operator
 if name in ["Jayati", “Pallavi"]:
 print(x is y) – give Boolean output
 print(not False) – give Boolean output
Syntax of For, while loop and Braeak and
Continue
 for x in range(5):
 for x in range(3, 6):
 for x in range(3, 8, 2):
 primes = [2, 3, 5, 7]
for prime in primes:
 count = 0
while count < 5:
count += 1
 count = 0
while True:
count += 1
if count >= 5:
break
• for x in range(10):
if x % 2 == 0:
continue
print(x)
Function
 def my_function():
print("Hello From My Function!“)
 def sum_two_numbers(a, b):
return a + b
 my_function()
 x = sum_two_numbers(254,265)
Numpy
 What is numpy ???
NumPy is a python library used for working
with arrays.
NumPy stands for Numerical Python.
It has lot of functionalities which we can use
Example
Element-wise calculations
[23.34925219 27.88755755 28.75558507 25.48723993 23.87257618 25.84368152]
More example
A Sincere THANKS……
To Ramiya Mam who taught me this subject
N To all my mentors … my teachers……
Our favorite …
ever smiling …
BARUAOLE SIR
His last words to me…..ap hamesha bhagte q rahte hai…..
nashta kiya…..??? exam achha hoga…. all the best……….
& many more……
Who carved me to
what I am today
THANK YOU
MORE TO LEARN…………
REGARDS
JAYATI

More Related Content

What's hot

하스켈 프로그래밍 입문 4
하스켈 프로그래밍 입문 4하스켈 프로그래밍 입문 4
하스켈 프로그래밍 입문 4Kwang Yul Seo
 
Intoduction to numpy
Intoduction to numpyIntoduction to numpy
Intoduction to numpyFaraz Ahmed
 
Coding Test Review1
Coding Test Review1Coding Test Review1
Coding Test Review1SEMINARGROOT
 
Coding test review 2
Coding test review 2Coding test review 2
Coding test review 2SEMINARGROOT
 
Numpy tutorial(final) 20160303
Numpy tutorial(final) 20160303Numpy tutorial(final) 20160303
Numpy tutorial(final) 20160303Namgee Lee
 
Scientific Computing with Python Webinar March 19: 3D Visualization with Mayavi
Scientific Computing with Python Webinar March 19: 3D Visualization with MayaviScientific Computing with Python Webinar March 19: 3D Visualization with Mayavi
Scientific Computing with Python Webinar March 19: 3D Visualization with MayaviEnthought, Inc.
 
하스켈 프로그래밍 입문 3
하스켈 프로그래밍 입문 3하스켈 프로그래밍 입문 3
하스켈 프로그래밍 입문 3Kwang Yul Seo
 
Arrays in python
Arrays in pythonArrays in python
Arrays in pythonLifna C.S
 
The Ring programming language version 1.9 book - Part 29 of 210
The Ring programming language version 1.9 book - Part 29 of 210The Ring programming language version 1.9 book - Part 29 of 210
The Ring programming language version 1.9 book - Part 29 of 210Mahmoud Samir Fayed
 
Pure Laziness: An Exploration of Haskell
Pure Laziness: An Exploration of HaskellPure Laziness: An Exploration of Haskell
Pure Laziness: An Exploration of HaskellMitchell Vitez
 
1 seaborn introduction
1 seaborn introduction 1 seaborn introduction
1 seaborn introduction YuleiLi3
 
The Ring programming language version 1.8 book - Part 27 of 202
The Ring programming language version 1.8 book - Part 27 of 202The Ring programming language version 1.8 book - Part 27 of 202
The Ring programming language version 1.8 book - Part 27 of 202Mahmoud Samir Fayed
 
(Fun)ctional go
(Fun)ctional go(Fun)ctional go
(Fun)ctional goBenJanecke
 
Python Cheat Sheet
Python Cheat SheetPython Cheat Sheet
Python Cheat SheetGlowTouch
 
ML: A Strongly Typed Functional Language
ML: A Strongly Typed Functional LanguageML: A Strongly Typed Functional Language
ML: A Strongly Typed Functional Languagelijx127
 
Scientific Computing with Python - NumPy | WeiYuan
Scientific Computing with Python - NumPy | WeiYuanScientific Computing with Python - NumPy | WeiYuan
Scientific Computing with Python - NumPy | WeiYuanWei-Yuan Chang
 

What's hot (20)

NumPy Refresher
NumPy RefresherNumPy Refresher
NumPy Refresher
 
Numpy python cheat_sheet
Numpy python cheat_sheetNumpy python cheat_sheet
Numpy python cheat_sheet
 
하스켈 프로그래밍 입문 4
하스켈 프로그래밍 입문 4하스켈 프로그래밍 입문 4
하스켈 프로그래밍 입문 4
 
Intoduction to numpy
Intoduction to numpyIntoduction to numpy
Intoduction to numpy
 
Coding Test Review1
Coding Test Review1Coding Test Review1
Coding Test Review1
 
Coding test review 2
Coding test review 2Coding test review 2
Coding test review 2
 
Python bokeh cheat_sheet
Python bokeh cheat_sheet Python bokeh cheat_sheet
Python bokeh cheat_sheet
 
Numpy tutorial(final) 20160303
Numpy tutorial(final) 20160303Numpy tutorial(final) 20160303
Numpy tutorial(final) 20160303
 
Scientific Computing with Python Webinar March 19: 3D Visualization with Mayavi
Scientific Computing with Python Webinar March 19: 3D Visualization with MayaviScientific Computing with Python Webinar March 19: 3D Visualization with Mayavi
Scientific Computing with Python Webinar March 19: 3D Visualization with Mayavi
 
하스켈 프로그래밍 입문 3
하스켈 프로그래밍 입문 3하스켈 프로그래밍 입문 3
하스켈 프로그래밍 입문 3
 
Arrays in python
Arrays in pythonArrays in python
Arrays in python
 
Python programming : Standard Input and Output
Python programming : Standard Input and OutputPython programming : Standard Input and Output
Python programming : Standard Input and Output
 
The Ring programming language version 1.9 book - Part 29 of 210
The Ring programming language version 1.9 book - Part 29 of 210The Ring programming language version 1.9 book - Part 29 of 210
The Ring programming language version 1.9 book - Part 29 of 210
 
Pure Laziness: An Exploration of Haskell
Pure Laziness: An Exploration of HaskellPure Laziness: An Exploration of Haskell
Pure Laziness: An Exploration of Haskell
 
1 seaborn introduction
1 seaborn introduction 1 seaborn introduction
1 seaborn introduction
 
The Ring programming language version 1.8 book - Part 27 of 202
The Ring programming language version 1.8 book - Part 27 of 202The Ring programming language version 1.8 book - Part 27 of 202
The Ring programming language version 1.8 book - Part 27 of 202
 
(Fun)ctional go
(Fun)ctional go(Fun)ctional go
(Fun)ctional go
 
Python Cheat Sheet
Python Cheat SheetPython Cheat Sheet
Python Cheat Sheet
 
ML: A Strongly Typed Functional Language
ML: A Strongly Typed Functional LanguageML: A Strongly Typed Functional Language
ML: A Strongly Typed Functional Language
 
Scientific Computing with Python - NumPy | WeiYuan
Scientific Computing with Python - NumPy | WeiYuanScientific Computing with Python - NumPy | WeiYuan
Scientific Computing with Python - NumPy | WeiYuan
 

Similar to Introduction to python

Python for data science by www.dmdiploma.com
Python for data science by www.dmdiploma.comPython for data science by www.dmdiploma.com
Python for data science by www.dmdiploma.comShwetaAggarwal56
 
Data Handling.pdf
Data Handling.pdfData Handling.pdf
Data Handling.pdfMILANOP1
 
Python: легко и просто. Красиво решаем повседневные задачи.
Python: легко и просто. Красиво решаем повседневные задачи.Python: легко и просто. Красиво решаем повседневные задачи.
Python: легко и просто. Красиво решаем повседневные задачи.Python Meetup
 
Python легко и просто. Красиво решаем повседневные задачи
Python легко и просто. Красиво решаем повседневные задачиPython легко и просто. Красиво решаем повседневные задачи
Python легко и просто. Красиво решаем повседневные задачиMaxim Kulsha
 
Python Performance 101
Python Performance 101Python Performance 101
Python Performance 101Ankur Gupta
 
Python programming workshop
Python programming workshopPython programming workshop
Python programming workshopBAINIDA
 
Arrow 101 - Kotlin funcional com Arrow
Arrow 101 - Kotlin funcional com ArrowArrow 101 - Kotlin funcional com Arrow
Arrow 101 - Kotlin funcional com ArrowLeandro Ferreira
 
Introduction to python
Introduction to pythonIntroduction to python
Introduction to pythonMarian Marinov
 
Pythonlearn-03-Conditional.pptx
Pythonlearn-03-Conditional.pptxPythonlearn-03-Conditional.pptx
Pythonlearn-03-Conditional.pptxVigneshChaturvedi1
 
Python-CH01L04-Presentation.pptx
Python-CH01L04-Presentation.pptxPython-CH01L04-Presentation.pptx
Python-CH01L04-Presentation.pptxElijahSantos4
 
EuroPython 2016 - Do I Need To Switch To Golang
EuroPython 2016 - Do I Need To Switch To GolangEuroPython 2016 - Do I Need To Switch To Golang
EuroPython 2016 - Do I Need To Switch To GolangMax Tepkeev
 
Python basic
Python basic Python basic
Python basic sewoo lee
 
High Wizardry in the Land of Scala
High Wizardry in the Land of ScalaHigh Wizardry in the Land of Scala
High Wizardry in the Land of Scaladjspiewak
 
Python programming workshop session 3
Python programming workshop session 3Python programming workshop session 3
Python programming workshop session 3Abdul Haseeb
 

Similar to Introduction to python (20)

Python for data science by www.dmdiploma.com
Python for data science by www.dmdiploma.comPython for data science by www.dmdiploma.com
Python for data science by www.dmdiploma.com
 
Python
PythonPython
Python
 
Data Handling.pdf
Data Handling.pdfData Handling.pdf
Data Handling.pdf
 
Begin with Python
Begin with PythonBegin with Python
Begin with Python
 
Python: легко и просто. Красиво решаем повседневные задачи.
Python: легко и просто. Красиво решаем повседневные задачи.Python: легко и просто. Красиво решаем повседневные задачи.
Python: легко и просто. Красиво решаем повседневные задачи.
 
Python легко и просто. Красиво решаем повседневные задачи
Python легко и просто. Красиво решаем повседневные задачиPython легко и просто. Красиво решаем повседневные задачи
Python легко и просто. Красиво решаем повседневные задачи
 
Python
PythonPython
Python
 
Python Performance 101
Python Performance 101Python Performance 101
Python Performance 101
 
Python programming workshop
Python programming workshopPython programming workshop
Python programming workshop
 
Arrow 101 - Kotlin funcional com Arrow
Arrow 101 - Kotlin funcional com ArrowArrow 101 - Kotlin funcional com Arrow
Arrow 101 - Kotlin funcional com Arrow
 
Introduction to python
Introduction to pythonIntroduction to python
Introduction to python
 
Pythonlearn-03-Conditional.pptx
Pythonlearn-03-Conditional.pptxPythonlearn-03-Conditional.pptx
Pythonlearn-03-Conditional.pptx
 
Python-CH01L04-Presentation.pptx
Python-CH01L04-Presentation.pptxPython-CH01L04-Presentation.pptx
Python-CH01L04-Presentation.pptx
 
Data Handling
Data Handling Data Handling
Data Handling
 
types.pdf
types.pdftypes.pdf
types.pdf
 
Python.pdf
Python.pdfPython.pdf
Python.pdf
 
EuroPython 2016 - Do I Need To Switch To Golang
EuroPython 2016 - Do I Need To Switch To GolangEuroPython 2016 - Do I Need To Switch To Golang
EuroPython 2016 - Do I Need To Switch To Golang
 
Python basic
Python basic Python basic
Python basic
 
High Wizardry in the Land of Scala
High Wizardry in the Land of ScalaHigh Wizardry in the Land of Scala
High Wizardry in the Land of Scala
 
Python programming workshop session 3
Python programming workshop session 3Python programming workshop session 3
Python programming workshop session 3
 

Recently uploaded

UEFA Euro 2024 Farewells to Football Icons.docx
UEFA Euro 2024 Farewells to Football Icons.docxUEFA Euro 2024 Farewells to Football Icons.docx
UEFA Euro 2024 Farewells to Football Icons.docxEuro Cup 2024 Tickets
 
basketball evolution History Slides.pdf
basketball evolution  History Slides.pdfbasketball evolution  History Slides.pdf
basketball evolution History Slides.pdftishvidphotography
 
Italy Vs Albania Italy vs Albania Euro 2024 Prediction Can Albania pull off a...
Italy Vs Albania Italy vs Albania Euro 2024 Prediction Can Albania pull off a...Italy Vs Albania Italy vs Albania Euro 2024 Prediction Can Albania pull off a...
Italy Vs Albania Italy vs Albania Euro 2024 Prediction Can Albania pull off a...World Wide Tickets And Hospitality
 
Silverexchange ID: To play on the Silver Exchange, Get ID from Virat777
Silverexchange ID: To play on the Silver Exchange, Get ID from Virat777Silverexchange ID: To play on the Silver Exchange, Get ID from Virat777
Silverexchange ID: To play on the Silver Exchange, Get ID from Virat777silverexchange id
 
UEFA Euro 2024 Clash and Eurovision 2024 Poll Insights.docx
UEFA Euro 2024 Clash and Eurovision 2024 Poll Insights.docxUEFA Euro 2024 Clash and Eurovision 2024 Poll Insights.docx
UEFA Euro 2024 Clash and Eurovision 2024 Poll Insights.docxEuro Cup 2024 Tickets
 
Turkey Vs Portugal Portugal at Euro 2024 Teams in group, fixtures, schedule, ...
Turkey Vs Portugal Portugal at Euro 2024 Teams in group, fixtures, schedule, ...Turkey Vs Portugal Portugal at Euro 2024 Teams in group, fixtures, schedule, ...
Turkey Vs Portugal Portugal at Euro 2024 Teams in group, fixtures, schedule, ...World Wide Tickets And Hospitality
 
Jual obat aborsi Madiun ( 085657271886 ) Cytote pil telat bulan penggugur kan...
Jual obat aborsi Madiun ( 085657271886 ) Cytote pil telat bulan penggugur kan...Jual obat aborsi Madiun ( 085657271886 ) Cytote pil telat bulan penggugur kan...
Jual obat aborsi Madiun ( 085657271886 ) Cytote pil telat bulan penggugur kan...ZurliaSoop
 
Belgium Vs Slovakia Belgium at Euro 2024 Teams in group, fixtures, schedule, ...
Belgium Vs Slovakia Belgium at Euro 2024 Teams in group, fixtures, schedule, ...Belgium Vs Slovakia Belgium at Euro 2024 Teams in group, fixtures, schedule, ...
Belgium Vs Slovakia Belgium at Euro 2024 Teams in group, fixtures, schedule, ...World Wide Tickets And Hospitality
 
Spain to be banned from participating in Euro 2024.docx
Spain to be banned from participating in Euro 2024.docxSpain to be banned from participating in Euro 2024.docx
Spain to be banned from participating in Euro 2024.docxEuro Cup 2024 Tickets
 
Social and Digital Strategy Deck______-_
Social and Digital Strategy Deck______-_Social and Digital Strategy Deck______-_
Social and Digital Strategy Deck______-_asamuel9
 
Top 10 French Footballers for Euro Cup 2024.docx
Top 10 French Footballers for Euro Cup 2024.docxTop 10 French Footballers for Euro Cup 2024.docx
Top 10 French Footballers for Euro Cup 2024.docxEuro Cup 2024 Tickets
 
Nirupam Singh on Fan Development, Growth, and the Future of Formula 1
Nirupam Singh on Fan Development, Growth, and the Future of Formula 1Nirupam Singh on Fan Development, Growth, and the Future of Formula 1
Nirupam Singh on Fan Development, Growth, and the Future of Formula 1Neil Horowitz
 
TAM Sports-IPL 17 Advertising Report- M01 - M55.xlsx - IPL 17 FCT (Commercial...
TAM Sports-IPL 17 Advertising Report- M01 - M55.xlsx - IPL 17 FCT (Commercial...TAM Sports-IPL 17 Advertising Report- M01 - M55.xlsx - IPL 17 FCT (Commercial...
TAM Sports-IPL 17 Advertising Report- M01 - M55.xlsx - IPL 17 FCT (Commercial...Social Samosa
 
JORNADA 6 LIGA MURO 2024TUXTEPECOAXACA.pdf
JORNADA 6 LIGA MURO 2024TUXTEPECOAXACA.pdfJORNADA 6 LIGA MURO 2024TUXTEPECOAXACA.pdf
JORNADA 6 LIGA MURO 2024TUXTEPECOAXACA.pdfArturo Pacheco Alvarez
 
Abortion pills in Jeddah +966572737505 <> buy cytotec <> unwanted kit Saudi A...
Abortion pills in Jeddah +966572737505 <> buy cytotec <> unwanted kit Saudi A...Abortion pills in Jeddah +966572737505 <> buy cytotec <> unwanted kit Saudi A...
Abortion pills in Jeddah +966572737505 <> buy cytotec <> unwanted kit Saudi A...samsungultra782445
 
Croatia vs Italy Inter Milan Looking to Carry On Success at Euro 2024.pdf
Croatia vs Italy Inter Milan Looking to Carry On Success at Euro 2024.pdfCroatia vs Italy Inter Milan Looking to Carry On Success at Euro 2024.pdf
Croatia vs Italy Inter Milan Looking to Carry On Success at Euro 2024.pdfEticketing.co
 
Cricket Api Solution.pdfCricket Api Solution.pdf
Cricket Api Solution.pdfCricket Api Solution.pdfCricket Api Solution.pdfCricket Api Solution.pdf
Cricket Api Solution.pdfCricket Api Solution.pdfLatiyalinfotech
 
Switzerland Vs Germany Switzerland Euro 2024 Fixtures, Dates, Venues, and Gam...
Switzerland Vs Germany Switzerland Euro 2024 Fixtures, Dates, Venues, and Gam...Switzerland Vs Germany Switzerland Euro 2024 Fixtures, Dates, Venues, and Gam...
Switzerland Vs Germany Switzerland Euro 2024 Fixtures, Dates, Venues, and Gam...World Wide Tickets And Hospitality
 
Turkiye vs Portugal Turkey's Road to Redemption and Preparation for Euro Cup ...
Turkiye vs Portugal Turkey's Road to Redemption and Preparation for Euro Cup ...Turkiye vs Portugal Turkey's Road to Redemption and Preparation for Euro Cup ...
Turkiye vs Portugal Turkey's Road to Redemption and Preparation for Euro Cup ...Eticketing.co
 

Recently uploaded (20)

Slovenia Vs Serbia Eurovision odds Slovenia have top.docx
Slovenia Vs Serbia Eurovision odds Slovenia have top.docxSlovenia Vs Serbia Eurovision odds Slovenia have top.docx
Slovenia Vs Serbia Eurovision odds Slovenia have top.docx
 
UEFA Euro 2024 Farewells to Football Icons.docx
UEFA Euro 2024 Farewells to Football Icons.docxUEFA Euro 2024 Farewells to Football Icons.docx
UEFA Euro 2024 Farewells to Football Icons.docx
 
basketball evolution History Slides.pdf
basketball evolution  History Slides.pdfbasketball evolution  History Slides.pdf
basketball evolution History Slides.pdf
 
Italy Vs Albania Italy vs Albania Euro 2024 Prediction Can Albania pull off a...
Italy Vs Albania Italy vs Albania Euro 2024 Prediction Can Albania pull off a...Italy Vs Albania Italy vs Albania Euro 2024 Prediction Can Albania pull off a...
Italy Vs Albania Italy vs Albania Euro 2024 Prediction Can Albania pull off a...
 
Silverexchange ID: To play on the Silver Exchange, Get ID from Virat777
Silverexchange ID: To play on the Silver Exchange, Get ID from Virat777Silverexchange ID: To play on the Silver Exchange, Get ID from Virat777
Silverexchange ID: To play on the Silver Exchange, Get ID from Virat777
 
UEFA Euro 2024 Clash and Eurovision 2024 Poll Insights.docx
UEFA Euro 2024 Clash and Eurovision 2024 Poll Insights.docxUEFA Euro 2024 Clash and Eurovision 2024 Poll Insights.docx
UEFA Euro 2024 Clash and Eurovision 2024 Poll Insights.docx
 
Turkey Vs Portugal Portugal at Euro 2024 Teams in group, fixtures, schedule, ...
Turkey Vs Portugal Portugal at Euro 2024 Teams in group, fixtures, schedule, ...Turkey Vs Portugal Portugal at Euro 2024 Teams in group, fixtures, schedule, ...
Turkey Vs Portugal Portugal at Euro 2024 Teams in group, fixtures, schedule, ...
 
Jual obat aborsi Madiun ( 085657271886 ) Cytote pil telat bulan penggugur kan...
Jual obat aborsi Madiun ( 085657271886 ) Cytote pil telat bulan penggugur kan...Jual obat aborsi Madiun ( 085657271886 ) Cytote pil telat bulan penggugur kan...
Jual obat aborsi Madiun ( 085657271886 ) Cytote pil telat bulan penggugur kan...
 
Belgium Vs Slovakia Belgium at Euro 2024 Teams in group, fixtures, schedule, ...
Belgium Vs Slovakia Belgium at Euro 2024 Teams in group, fixtures, schedule, ...Belgium Vs Slovakia Belgium at Euro 2024 Teams in group, fixtures, schedule, ...
Belgium Vs Slovakia Belgium at Euro 2024 Teams in group, fixtures, schedule, ...
 
Spain to be banned from participating in Euro 2024.docx
Spain to be banned from participating in Euro 2024.docxSpain to be banned from participating in Euro 2024.docx
Spain to be banned from participating in Euro 2024.docx
 
Social and Digital Strategy Deck______-_
Social and Digital Strategy Deck______-_Social and Digital Strategy Deck______-_
Social and Digital Strategy Deck______-_
 
Top 10 French Footballers for Euro Cup 2024.docx
Top 10 French Footballers for Euro Cup 2024.docxTop 10 French Footballers for Euro Cup 2024.docx
Top 10 French Footballers for Euro Cup 2024.docx
 
Nirupam Singh on Fan Development, Growth, and the Future of Formula 1
Nirupam Singh on Fan Development, Growth, and the Future of Formula 1Nirupam Singh on Fan Development, Growth, and the Future of Formula 1
Nirupam Singh on Fan Development, Growth, and the Future of Formula 1
 
TAM Sports-IPL 17 Advertising Report- M01 - M55.xlsx - IPL 17 FCT (Commercial...
TAM Sports-IPL 17 Advertising Report- M01 - M55.xlsx - IPL 17 FCT (Commercial...TAM Sports-IPL 17 Advertising Report- M01 - M55.xlsx - IPL 17 FCT (Commercial...
TAM Sports-IPL 17 Advertising Report- M01 - M55.xlsx - IPL 17 FCT (Commercial...
 
JORNADA 6 LIGA MURO 2024TUXTEPECOAXACA.pdf
JORNADA 6 LIGA MURO 2024TUXTEPECOAXACA.pdfJORNADA 6 LIGA MURO 2024TUXTEPECOAXACA.pdf
JORNADA 6 LIGA MURO 2024TUXTEPECOAXACA.pdf
 
Abortion pills in Jeddah +966572737505 <> buy cytotec <> unwanted kit Saudi A...
Abortion pills in Jeddah +966572737505 <> buy cytotec <> unwanted kit Saudi A...Abortion pills in Jeddah +966572737505 <> buy cytotec <> unwanted kit Saudi A...
Abortion pills in Jeddah +966572737505 <> buy cytotec <> unwanted kit Saudi A...
 
Croatia vs Italy Inter Milan Looking to Carry On Success at Euro 2024.pdf
Croatia vs Italy Inter Milan Looking to Carry On Success at Euro 2024.pdfCroatia vs Italy Inter Milan Looking to Carry On Success at Euro 2024.pdf
Croatia vs Italy Inter Milan Looking to Carry On Success at Euro 2024.pdf
 
Cricket Api Solution.pdfCricket Api Solution.pdf
Cricket Api Solution.pdfCricket Api Solution.pdfCricket Api Solution.pdfCricket Api Solution.pdf
Cricket Api Solution.pdfCricket Api Solution.pdf
 
Switzerland Vs Germany Switzerland Euro 2024 Fixtures, Dates, Venues, and Gam...
Switzerland Vs Germany Switzerland Euro 2024 Fixtures, Dates, Venues, and Gam...Switzerland Vs Germany Switzerland Euro 2024 Fixtures, Dates, Venues, and Gam...
Switzerland Vs Germany Switzerland Euro 2024 Fixtures, Dates, Venues, and Gam...
 
Turkiye vs Portugal Turkey's Road to Redemption and Preparation for Euro Cup ...
Turkiye vs Portugal Turkey's Road to Redemption and Preparation for Euro Cup ...Turkiye vs Portugal Turkey's Road to Redemption and Preparation for Euro Cup ...
Turkiye vs Portugal Turkey's Road to Redemption and Preparation for Euro Cup ...
 

Introduction to python

  • 1. INTRODUCTION TO PYTHON JAYATI VIJAYWARGIYA Hum TumHare BaaP Hain
  • 2. Variables and data types in python INTEGER – FLOAT – STRING myint = 24 myfloat = 24.0 OR myfloat = float(24) mystring = ‘Jayati‘ OR mystring = “Jayati“
  • 3. Addition of Numbers and of Strings Five = 5 Seven = 7 Twelve = Five + Seven J = “Jayati“ V = “Vijaywargiya“ JV = J + " " + V
  • 4. List in python  Similar to array we have list in python  mylist = []  mylist.append(10)  mylist.append(20)  print(mylist[0])  print(mylist[1])  print(mylist) Output – 10 20 [10 , 20]
  • 5. Printing a variable  second_name = Vijaywargiya  print("The second of Jayati is %s" % second_name)  H.W. Find out the notations used for integer and float ??
  • 6. Basic operators  number = 1 + 2 * 4 / 6  remainder = 101 % 5  sq = 7 ** 2  cube = 2 ** 3  Addition = “Python" + " " + “Tutorial“  Masty = “Masty" * 10  vovels = [‘a’, ‘e’]  consonents = [‘b’ , ‘c’]  Letters = vovels + consonents print([‘baar’, ‘baar’, ‘dekho’ ] * 3)
  • 7. Operators in python 1. Conditional op. x = 2 print(x == 2) Output – True 2. Boolean op. – and / or name = "Joyati“ age = 24 if name == "Jayati" and age == 23: print(“Hii Jayati Vijaywargiya.") if name == "Jayati" or name == “Pallavi": print(“Hii Pallo")
  • 8. in , is and not operator  if name in ["Jayati", “Pallavi"]:  print(x is y) – give Boolean output  print(not False) – give Boolean output
  • 9. Syntax of For, while loop and Braeak and Continue  for x in range(5):  for x in range(3, 6):  for x in range(3, 8, 2):  primes = [2, 3, 5, 7] for prime in primes:  count = 0 while count < 5: count += 1  count = 0 while True: count += 1 if count >= 5: break • for x in range(10): if x % 2 == 0: continue print(x)
  • 10. Function  def my_function(): print("Hello From My Function!“)  def sum_two_numbers(a, b): return a + b  my_function()  x = sum_two_numbers(254,265)
  • 11. Numpy  What is numpy ??? NumPy is a python library used for working with arrays. NumPy stands for Numerical Python. It has lot of functionalities which we can use
  • 12.
  • 13.
  • 14.
  • 16. Element-wise calculations [23.34925219 27.88755755 28.75558507 25.48723993 23.87257618 25.84368152]
  • 18. A Sincere THANKS…… To Ramiya Mam who taught me this subject N To all my mentors … my teachers…… Our favorite … ever smiling … BARUAOLE SIR His last words to me…..ap hamesha bhagte q rahte hai….. nashta kiya…..??? exam achha hoga…. all the best………. & many more…… Who carved me to what I am today
  • 19. THANK YOU MORE TO LEARN………… REGARDS JAYATI