DEV Community

Lakshmi Pritha Nadesan
Lakshmi Pritha Nadesan

Posted on

Full stack python developer - Day 2

Today I learned about
1.Introduction of python
2.Functions
3.Difference between User defined and predefined functions
4.Arguments
5.Function call
6.write a calculate program to with and without Function.

***Example:*

My first Program

name = input("What is your name?")
print("Welcome to Python", name)

Calculate Program without function:**
no1=120
no2=40
print(no1+no2)
print(no1-no2)
print(no1*no2)
print(no1/no2)

Calculate Program with function:

def calculate(no1,no2):
print(no1+no2)
print(no1-no2)
print(no1*no2)
print(no1/no2)

no1=120
no2=40
calculate(no1,no2)

Top comments (1)

Collapse
 
piggo151 profile image
Cole Hauser

Nice!

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay