SlideShare a Scribd company logo
FUNCTIONS
CALLING FUNCTIONS
print(“hi”)
import math
math.floor(18.7)
input(“Enter your first name : ”)
DEFINING A FUNCTION
def ( ):
indented function body
def exp(x,y):
z=x**y
print(z)
base=2
expo=4
exp(base,expo)
IMPORTS
main.py
import example
base=2
expo=4
example.exp(base,expo
)
example.py
def exp(x,y):
z=x**y
print(z)
MORE FUNCTIONS
exp.py
def exp(x,y):
z=x**y
print(z)
def expTen(x):
z=10**x
print(z)
VARIABLE SCOPE
ben.py
def AddOne(x):
z=x+1
print("Z is :",z)
print("X is :",x)
def increment(x):
x=x+1
print("X is :",x)
main.py
import ben
a=10
print(a)
ben.AdddOne(a)
ben.increment(a)
print(a)

More Related Content

PPSX
Basics of Java.ppsx
PPTX
Programming Languages
PPTX
PPTX
Handling Data in Algorithm
PPTX
PPTX
Pseudocode
PPTX
Communications and Networking
PPTX
Basics of Java.ppsx
Programming Languages
Handling Data in Algorithm
Pseudocode
Communications and Networking

Recently uploaded (20)

PPTX
CHAPTER 12 - CYBER SECURITY AND FUTURE SKILLS (1) (1).pptx
PDF
Design an Analysis of Algorithms I-SECS-1021-03
PDF
top salesforce developer skills in 2025.pdf
PDF
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
PDF
Odoo Companies in India – Driving Business Transformation.pdf
PPTX
ISO 45001 Occupational Health and Safety Management System
PPTX
history of c programming in notes for students .pptx
PDF
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
PDF
medical staffing services at VALiNTRY
PDF
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
PDF
2025 Textile ERP Trends: SAP, Odoo & Oracle
PDF
System and Network Administraation Chapter 3
PDF
Wondershare Filmora 15 Crack With Activation Key [2025
PPTX
ManageIQ - Sprint 268 Review - Slide Deck
PPTX
VVF-Customer-Presentation2025-Ver1.9.pptx
PDF
How Creative Agencies Leverage Project Management Software.pdf
PDF
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
PDF
Digital Strategies for Manufacturing Companies
PDF
Understanding Forklifts - TECH EHS Solution
PPTX
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
CHAPTER 12 - CYBER SECURITY AND FUTURE SKILLS (1) (1).pptx
Design an Analysis of Algorithms I-SECS-1021-03
top salesforce developer skills in 2025.pdf
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
Odoo Companies in India – Driving Business Transformation.pdf
ISO 45001 Occupational Health and Safety Management System
history of c programming in notes for students .pptx
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
medical staffing services at VALiNTRY
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
2025 Textile ERP Trends: SAP, Odoo & Oracle
System and Network Administraation Chapter 3
Wondershare Filmora 15 Crack With Activation Key [2025
ManageIQ - Sprint 268 Review - Slide Deck
VVF-Customer-Presentation2025-Ver1.9.pptx
How Creative Agencies Leverage Project Management Software.pdf
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
Digital Strategies for Manufacturing Companies
Understanding Forklifts - TECH EHS Solution
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
Ad
Ad

Functions

Editor's Notes

  • #4: Talk about different parameter lists