Python Project for beginners #6| Calculator -Complete Code | Python for Beginners

  Рет қаралды 38,304

Jenny's Lectures CS IT

Jenny's Lectures CS IT

Күн бұрын

In this video we will make a Calculator Project in Python using functions, Dictionaries and recursion concept.
Best Python Tutorials for Beginners: • Python - Basic to Advance
*********************************************
Connect & Contact Me:
Jenny's Lectures HINDI: / @jennyslectureshindi
Facebook: / jennys-lectures-csit-n...
Quora: www.quora.com/profile/Jayanti...
Instagram: / jayantikhatrilamba
Twitter: / khatrijenny
*******************************************
More Playlists:
Programming in C Tutorials: • Programming in C
Printing Pattern in C: • Printing Pattern Progr...
C++ Tutorials for beginners: • Lec 1: How to Install ...
Placement Series: • Placements Series
Data Structures and Algorithms: https: • Data Structures and Al...
Design and Analysis of Algorithms(DAA): • Design and Analysis of...
Dynamic Programming: • Dynamic Programming
Operating Systems tutorials: // • Operating Systems
DBMS Tutorials: • DBMS (Database Managem...
#projects #pythonprojects #python #pythonprogramming #jennyslectures

Пікірлер: 76
@devSackey
@devSackey 7 ай бұрын
import os def addition(a, b): result = a + b return result def multiplication(a, b): result = a * b return result def division(a, b): result = a / b return result def subtraction(a, b): result = a - b return result def calculator(): num1 = int(input("Enter first number: ")) print("+ - * / ") continue_program = True while continue_program: operator = input("Pick an operation: ") num2 = int(input("Enter next number: ")) if operator == "+": output = addition(num1, num2) print(f"{num1} + {num2} = {output}") elif operator == "*": output = multiplication(num1, num2) print(f"{num1} * {num2} = {output}") elif operator == "/": output = division(num1, num2) print(f"{num1} / {num2} = {output}") elif operator == "-": output = subtraction(num1, num2) print(f"{num1} - {num2} = {output}") else: print("Invalid operator") play_again = input(f"Enter 'y' to continue calculation with {output} or 'n' to start a new calculation or 'x' to exit ").lower() if play_again == 'y': num1 = output elif play_again == 'n': continue_program = False os.system('cls') calculator() else: continue_program = False print("Bye") calculator()
@BnFh-hh1ht
@BnFh-hh1ht 4 ай бұрын
Thank you so much! I have followed you do this project and it's successful.
@nicksonkiprotich5070
@nicksonkiprotich5070 Жыл бұрын
Hey Jenny, thank you so much for these lectures. You really are a blessing. One ask though, could you please dedicate a lecture to teach everything on JSON in relation to python?
@waqarrajpt7031
@waqarrajpt7031 Жыл бұрын
Great ma'am Thanks so much
@Technoacademy969
@Technoacademy969 Жыл бұрын
Thank you when i was yuniversity Your vidio helped me thank you sister
@AnonymousCoder7
@AnonymousCoder7 Жыл бұрын
So I was missing my newspaper lately . Good that I found it here ! 😋😋
@surenderp5904
@surenderp5904 Жыл бұрын
Thank you mam❤️
@sinisteryt459
@sinisteryt459 Жыл бұрын
Thank you mam
@Yourcodingfriendsaruk
@Yourcodingfriendsaruk 5 ай бұрын
thanks you mam
@Aaloochaap
@Aaloochaap Жыл бұрын
Ma'am if a student has completed his BCCA is he eligible for NIMCET Exam?? Help🗿🙏
@user-yx8ye2yf6b
@user-yx8ye2yf6b 11 ай бұрын
Mam can you create a what's app group or a doubt class for Python I have a few doubts
@MZubair-ql4rn
@MZubair-ql4rn 7 ай бұрын
😝😝
@fitnessfusion104
@fitnessfusion104 Жыл бұрын
maam how many vidoes are left in this course
@sudhakarjalla9067
@sudhakarjalla9067 Жыл бұрын
@ShubhamGaming-wq9om
@ShubhamGaming-wq9om Жыл бұрын
Love you mam❤😘😘
@zolarpromaxcomedy3066
@zolarpromaxcomedy3066 Жыл бұрын
How can I contact you for classes
@krishnateja6670
@krishnateja6670 Жыл бұрын
mam when will this course will end
@tamannaist
@tamannaist Жыл бұрын
Ma'am please complete c++series oops concept programming
@marvelousncube
@marvelousncube Жыл бұрын
I did this using object oriented programming ,please teach us object oriented programming mam😊
@JennyslecturesCSIT
@JennyslecturesCSIT Жыл бұрын
Will start soon
@Vinaykkkk
@Vinaykkkk 11 ай бұрын
mam,what is the short cut key to move the block of code into indentation?
@danielmukenya3317
@danielmukenya3317 9 ай бұрын
tab key on your keyboard
@potrakandimanojkumar2693
@potrakandimanojkumar2693 Жыл бұрын
𝑳𝒐𝒗𝒆 𝒇𝒓𝒐𝒎 𝒐𝒅𝒊𝒔𝒉𝒂...❤
@pkr1kajdjasdljskjdjsadjlaskdja
@pkr1kajdjasdljskjdjsadjlaskdja 8 ай бұрын
#without use function without of switch case make calculator x = "t" while x == "t": c = int(input("enter first name")) i = True while i: operation = input("what you want to operation") b = int(input("enter second name")) if operation == "+": print(c, "+", b) c = c + b print("=", c) elif operation == "-": print(c, "-", b) c = c - b print("=", c) elif operation == "/": print(c, "/", b) c = c / b print("=", c) elif operation == "*": print(c, "*", b) c = c * b print("=", c) elif operation == "%": print(c, "%", b) c = c % b print("=", c) else: print("invalid input") x = input("y for continue or n for not continue") if x == "y": i = True else: break x = input(" more calculate or not if calculate than type t ") ###### 2nd method # use function make calculator def sum(a, b): return a + b def dif(a, b): return a - b def multi(a, b): return a * b def divide(a, b): return a / b def modulo(a, b): return a % b x = "t" while x == "t": c = int(input("enter first name")) i = True while i: operation = input("what you want to operation") b = int(input("enter second name")) if operation == "+": print(c, "+", b) c = sum(c, b) print("=", c) elif operation == "-": print(c, "-", b) c = dif(c, b) print("=", c) elif operation == "/": print(c, "/", b) c = divide(c, b) print("=", c) elif operation == "*": print(c, "*", b) c = multi(c, b) print("=", c) elif operation == "%": print(c, "%", b) c = modulo(c, b) print("=", c) else: print("invalid input") x = input("y for continue or n for not continue") if x == "y": i = True else: break x = input(" more calculate or not if calculate than type t ")
@artist_r_21
@artist_r_21 Жыл бұрын
Can you teach VEX .
@anurag__yadav940
@anurag__yadav940 Жыл бұрын
Nice goggles 😚
@gumanmahar6414
@gumanmahar6414 Жыл бұрын
Ma'am Good Evening Please make an Excel Course Advance Level.
@pullaashlesha8136
@pullaashlesha8136 Жыл бұрын
Mam plz continue oops concept core and advanced python mam plz plz mam plz do that if you do that we r really thankfully and praying for you mam plzmam do core python videos
@pullaashlesha8136
@pullaashlesha8136 Жыл бұрын
Oops concept in python plz mam
@prashanthrao519
@prashanthrao519 Жыл бұрын
provide the notes of this project on description link
@mrsbk03
@mrsbk03 Жыл бұрын
What if it's a white whole ? That's emitting the energy from its Black hole
@ThatAsianGuyExplains
@ThatAsianGuyExplains Жыл бұрын
Not possible
@yogichappa3347
@yogichappa3347 Жыл бұрын
I love your voice mam❤❤😊
@flynneugene2675
@flynneugene2675 Жыл бұрын
Voice chodo Gyan lelo
@editor_soul_005
@editor_soul_005 Жыл бұрын
​@@flynneugene2675ha sahi bat he bhai
@pythonassignment
@pythonassignment Жыл бұрын
2nd view
@Whiro__08
@Whiro__08 Жыл бұрын
Lob you mam🥰😍😘
@rohanbhalerao8066
@rohanbhalerao8066 Жыл бұрын
Lecture pe dhyan do madam par nahi 😂
@rohanbhalerao8066
@rohanbhalerao8066 Жыл бұрын
😈
@Whiro__08
@Whiro__08 Жыл бұрын
@@rohanbhalerao8066 thum bhi padai mai Dhyan dhey mere comment pe nai🥲
@Whiro__08
@Whiro__08 Жыл бұрын
Just for fun bro
@rohanbhalerao8066
@rohanbhalerao8066 Жыл бұрын
@@Whiro__08 tum bhi bro
@umangupadhyay4335
@umangupadhyay4335 Жыл бұрын
Mam aapse sadi krne ke lie kitni permonth salary chaiye ?
@gaysergyalpo8549
@gaysergyalpo8549 Жыл бұрын
Hi I am from Bhutan 🇧🇹🇧🇹🇧🇹🇧🇹 I had finished Python basics What should i learn next. Please respond me🙏🙏🙏🙏🤞
@marvelousncube
@marvelousncube Жыл бұрын
Go deep in object oriented programming ,file handling, Django framework , build a massive project that will you all the basic things you've learnt
@sharanabasavasharana2810
@sharanabasavasharana2810 Жыл бұрын
Next video
@DARK_RYZEN
@DARK_RYZEN 6 ай бұрын
condition = True while condition: A = int(input("Enter the first number: ")) print("+ - % *") operation = input("Enter an operation symbol: ") B = int(input("Enter the second number: ")) if operation == "+": C = A + B print(C) elif operation == "-": C = A - B print(C) elif operation == "*": C = A * B print(C) elif operation == "%": C = A % B print(C) ask = input(f"Do you want to continue with {C}? 'y' to continue, 'no' to start a new calculation, or 'x' to exit: ") if ask == "y": D = int(input("Enter a third number: ")) if operation == "+": C = C + D print(C) elif operation == "-": C = C - D print(C) elif operation == "*": C = C * D print(C) elif operation == "%": C = C % D print(C) elif ask == "no": condition = True elif ask == "x": break
@CodingBRO
@CodingBRO Жыл бұрын
num1=int(input('Enter the first no. : ')) pick=input(' + - * / Pick a operation: ') num2=int(input('Enter the second no.: ')) match pick: case '+':ans=num1+num2 case '-':ans=num1-num2 case '*':ans=num1*num2 case '/':ans=num1/num2 case _:print("invalid operator") print(ans) response=input("Enter 'y' to continue with "+str(ans)+ " or 'n' to start new calculation or 'x' to exit:") while True: while response=='y': pick=input(' + - * / Pick a operation: ') num2=int(input('Enter the second no.: ')) match pick: case '+':ans=ans+num2 case '-':ans=ans-num2 case '*':ans=ans*num2 case '/':ans=ans/num2 case _:print("invalid operator") print(ans) response=input("Enter 'y' to continue with "+str(ans)+ " or 'n' to start new calculation or 'x' to exit:") while response=='n': num1=int(input('Enter the first no. : ')) pick=input(' + - * / Pick a operation: ') num2=int(input('Enter the second no.: ')) match pick: case '+':ans=num1+num2 case '-':ans=num1-num2 case '*':ans=num1*num2 case '/':ans=num1/num2 case _:print("invalid operator") print(ans) response=input("Enter 'y' to continue with "+str(ans)+ " or 'n' to start new calculation or 'x' to exit:") if response=='x': print('Thanks') break "mam how is this. plz correct me if i am wrong" thanks for videos 😊😊😊
@indrarajmodi1232
@indrarajmodi1232 Жыл бұрын
Ma'am aap Hindi me bhi btaya karo n. C me Data structure ek bar Hindi me video bna do n please. English me samjh nhi aata hai. Please 🙏🙏🙏
@indrarajmodi1232
@indrarajmodi1232 Жыл бұрын
Exam hai and kuchh samjh nhi aaya hai so please please 🙏🙏🙏🙏
@sharuk98ala
@sharuk98ala Жыл бұрын
Babe! You are gorgeous ❤
@deepaksingh7287
@deepaksingh7287 Жыл бұрын
don't know why, i am interested to read some news today 😅😅
@mgjdb
@mgjdb Жыл бұрын
Nice t shirt mam😂😂
@ruthpersiyal
@ruthpersiyal Жыл бұрын
Mam plz you tell tamil mam i am not understanding mam
@SONUkumar-eg4xo
@SONUkumar-eg4xo Жыл бұрын
Hii
@anger9589
@anger9589 Жыл бұрын
First view ❤
@akumallalokesh3423
@akumallalokesh3423 Жыл бұрын
mama java course
@SonuKumar-gt6wq
@SonuKumar-gt6wq Жыл бұрын
Hallo mam
@PrinceTewatia001
@PrinceTewatia001 5 ай бұрын
Aapko dekhe ya pde Newspaper lg rhe ho
@parthasaradireddy9370
@parthasaradireddy9370 Жыл бұрын
HELLO MAM ARE U MARRIED!!!
@samagrajaiswal1773
@samagrajaiswal1773 Жыл бұрын
Nhai bhai esa hoga mai mar jaonga
@bommanaakash5900
@bommanaakash5900 Жыл бұрын
Ma'am has a fiancee
@BeastART21
@BeastART21 Жыл бұрын
Haan tere baap ke saath
@varaprasadbandaru3916
@varaprasadbandaru3916 Жыл бұрын
​@@bommanaakash5900 still unmarried
@nitinpandey4925
@nitinpandey4925 Жыл бұрын
Bruh maam married h
@unknown__virus
@unknown__virus Жыл бұрын
Apki koi Sister he kya ? 😊😊
@bavigaddachaithureddy2341
@bavigaddachaithureddy2341 Жыл бұрын
Mam r u married
@kushalpha4442
@kushalpha4442 Жыл бұрын
Thankyou mam❤️
local and Global Scope in Python | Python Tutorials for Beginners #lec78
14:34
Jenny's Lectures CS IT
Рет қаралды 35 М.
While loops in Python are easy ♾️
6:58
Bro Code
Рет қаралды 323 М.
Alat Seru Penolong untuk Mimpi Indah Bayi!
00:31
Let's GLOW! Indonesian
Рет қаралды 16 МЛН
The child was abused by the clown#Short #Officer Rabbit #angel
00:55
兔子警官
Рет қаралды 25 МЛН
I wish I could change THIS fast! 🤣
00:33
America's Got Talent
Рет қаралды 125 МЛН
Simple GUI Calculator in Python
22:51
NeuralNine
Рет қаралды 250 М.
File Handling in Python | Python Tutorials for Beginners #lec95
45:32
Jenny's Lectures CS IT
Рет қаралды 79 М.
Please Master These 10 Python Functions…
22:17
Tech With Tim
Рет қаралды 79 М.
Modules in Python | Python Tutorials for Beginners #lec97
25:28
Jenny's Lectures CS IT
Рет қаралды 64 М.
Introduction to For Loops in Python (Python Tutorial #5)
10:22
CS Dojo
Рет қаралды 1,6 МЛН
Abstraction in Python | Python OOP Concepts| Python Tutorials for Beginners #lec98
16:06
Alat Seru Penolong untuk Mimpi Indah Bayi!
00:31
Let's GLOW! Indonesian
Рет қаралды 16 МЛН