Full stack python developer - Day 2
Lakshmi Pritha Nadesan

Lakshmi Pritha Nadesan @lakshmipritha

About: I am studying Python Full Stack Developer course

Joined:
Nov 12, 2024

Full stack python developer - Day 2

Publish Date: Nov 12 '24
-1 1

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)

Comments 1 total

Add comment