惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

罗磊的独立博客
Google DeepMind News
Google DeepMind News
MyScale Blog
MyScale Blog
A
About on SuperTechFans
Martin Fowler
Martin Fowler
M
MIT News - Artificial intelligence
Recent Announcements
Recent Announcements
D
DataBreaches.Net
B
Blog
博客园 - 【当耐特】
爱范儿
爱范儿
有赞技术团队
有赞技术团队
P
Proofpoint News Feed
WordPress大学
WordPress大学
小众软件
小众软件
Apple Machine Learning Research
Apple Machine Learning Research
I
InfoQ
Engineering at Meta
Engineering at Meta
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Last Week in AI
Last Week in AI
Microsoft Azure Blog
Microsoft Azure Blog
雷峰网
雷峰网
量子位
G
Google Developers Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Python Functions
Sakthivel V · 2026-05-30 · via DEV Community

Sakthivel V

Functions:

  • Functions in Python are blocks of code that perform a specific task.
  • They help us avoid repeating code and make programs easier to read and maintain.

Functions with parameter:

A function that takes input values (parameters).
Ex:

def greet(name):
    print("Hello", name)

greet("Sakthi")

Function Without Parameters:

  • A function that doesn’t take any input. Ex:
def greet():
    print("Hello, welcome to Python!")

greet()

Function With Return Value:

  • A function can return a result using the return keyword. Ex:
def add(a, b):
    return a + b

result = add(5, 3)
print("Sum is:", result)

Function With Optional Parameter

  • We can give parameters a default value. If no value is passed, the default is used. Ex:
def greet(name="Guest"):
    print("Hello", name)

greet("Sakthi")
greet()

Function With Variable Length Parameters

  • Sometimes we don’t know how many arguments will be passed. We can use (*args)
def numbers(*args):
    total = 0
    for num in args:
        total += num 
    print("Sum is:", total)

numbers(1, 2, 3, 4, 5)

Practice problems:

data = "John,30,40,50,60\nDave,10,20,30,45,50\nAdam,40,95,87,67,50"
total, pass / fail, average, rank

data = "John,30,40,50,60,70\nDave,10,20,30,45,50\nAdam,40,95,87,67,50"

students = data.split("\n")

for std in students:

    record = std.split(",")

    name = record[0]
    total = 0
    result = "Pass"

    for i in range(1, len(record)):

        mark = int(record[i])
        total += mark

        if mark < 36:
            result = "Fail"

    avg = total / 5

    record.append(total)
    record.append(avg)
    record.append(result)

    print(record)

Calculator with variable length arguments, and return values

def add(*args):
    total = 0

    for i in args:
        total = total + i

    return total


def sub(*args):
    total = args[0]

    for i in range(1, len(args)):
        total = total - args[i]

    return total


def mul(*args):
    total = 1

    for i in range(1, len(args)):
        total = total * args[i]

    return total


def div(*args):
    total = args[0]

    for i in range(1, len(args)):
        total = total / args[i]

    return total


def floor_div(*args):
    total = args[0]

    for i in range(1, len(args)):
        total = total // args[i]

    return total


def mod(*args):
    total = args[0]

    for i in range(1, len(args)):
        total = total % args[i]

    return total


def power(*args):
    total = args[0]

    for i in range(1, len(args)):
        total = total ** args[i]

    return total


print("Addition:", add(1, 2, 3, 4))
print("Subtraction:", sub(10, 2, 3))
print("Multiplication:", mul(2, 3, 4))
print("Division:", div(100, 2, 5))
print("Floor Division:", floor_div(100, 3, 2))
print("Modulus:", mod(10, 3))
print("Power:", power(2, 3, 2))