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?
@devSackey Жыл бұрын
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()
@bhautikhirpara0073 ай бұрын
def add(a,b): return a + b def subtract(a,b): return a - b def multiply(a,b): return a * b def divide(a,b): return a / b opp_dict = { "+":add, "-":subtract, "*":multiply, "/":divide } def calculator(): num1= float(input("enter first number : ")) start = False while not start: for symbol in opp_dict: print(symbol) oppration = input("what oppration want to do : ") num2 = float(input("enter next number : ")) output = opp_dict[oppration](num1,num2) print(output) choose = input("Type 'y' for more oppration with output, type 'n' to new oppration, type 'x' to exit : ") if choose == "y": num1 = output elif choose == "n": start = True calculator() else: start = True print("Good bye") calculator()
@waqarrajpt7031 Жыл бұрын
Great ma'am Thanks so much
@BnFh-hh1ht9 ай бұрын
Thank you so much! I have followed you do this project and it's successful.
@pkr1kajdjasdljskjdjsadjlaskdja Жыл бұрын
#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 ")
@marvelousncube Жыл бұрын
I did this using object oriented programming ,please teach us object oriented programming mam😊
@JennyslecturesCSIT Жыл бұрын
Will start soon
@Technoacademy969 Жыл бұрын
Thank you when i was yuniversity Your vidio helped me thank you sister
@AnonymousCoder7 Жыл бұрын
So I was missing my newspaper lately . Good that I found it here ! 😋😋
@DARK_RYZEN11 ай бұрын
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 Жыл бұрын
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 😊😊😊
@Yourcodingfriendsaruk11 ай бұрын
thanks you mam
@AkhilGeorge-v7e Жыл бұрын
Mam can you create a what's app group or a doubt class for Python I have a few doubts
@MZubair-ql4rn Жыл бұрын
😝😝
@potrakandimanojkumar2693 Жыл бұрын
𝑳𝒐𝒗𝒆 𝒇𝒓𝒐𝒎 𝒐𝒅𝒊𝒔𝒉𝒂...❤
@sethup5904 Жыл бұрын
Thank you mam❤️
@careerwhere450828 күн бұрын
Ma'am Namaste and thanks currently i am using 3.13.0 python version ,while running program on Pycharm 2024 using os mudule and os.system('cls') ,it isnot working on my lapton window 11 what should be the reason?
@sinisteryt459 Жыл бұрын
Thank you mam
@pullaashlesha8136 Жыл бұрын
Oops concept in python plz mam
@kushalpha4442 Жыл бұрын
Thankyou mam❤️
@dikshateware034 ай бұрын
how you make the code intended by selecting it? what key you use?
@@rohanbhalerao8066 thum bhi padai mai Dhyan dhey mere comment pe nai🥲
@Whiro__08 Жыл бұрын
Just for fun bro
@rohanbhalerao8066 Жыл бұрын
@@Whiro__08 tum bhi bro
@gumanmahar6414 Жыл бұрын
Ma'am Good Evening Please make an Excel Course Advance Level.
@sudhakarjalla9067 Жыл бұрын
❤
@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
@Vinaykkkk Жыл бұрын
mam,what is the short cut key to move the block of code into indentation?
@danielmukenya3317 Жыл бұрын
tab key on your keyboard
@yogichappa3347 Жыл бұрын
I love your voice mam❤❤😊
@flynneugene2675 Жыл бұрын
Voice chodo Gyan lelo
@editor_soul_005 Жыл бұрын
@@flynneugene2675ha sahi bat he bhai
@prashanthrao519 Жыл бұрын
provide the notes of this project on description link
@fitnessfusion104 Жыл бұрын
maam how many vidoes are left in this course
@krishnateja6670 Жыл бұрын
mam when will this course will end
@sharanabasavasharana2810 Жыл бұрын
Next video
@mrsbk03 Жыл бұрын
What if it's a white whole ? That's emitting the energy from its Black hole
@ThatAsianGuyExplains Жыл бұрын
Not possible
@zolarpromaxcomedy3066 Жыл бұрын
How can I contact you for classes
@sharuk98ala Жыл бұрын
Babe! You are gorgeous ❤
@deepaksingh7287 Жыл бұрын
don't know why, i am interested to read some news today 😅😅
@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 Жыл бұрын
Exam hai and kuchh samjh nhi aaya hai so please please 🙏🙏🙏🙏
@Aaloochaap Жыл бұрын
Ma'am if a student has completed his BCCA is he eligible for NIMCET Exam?? Help🗿🙏
@mgjdb Жыл бұрын
Nice t shirt mam😂😂
@pythonassignment Жыл бұрын
2nd view
@umangupadhyay4335 Жыл бұрын
Mam aapse sadi krne ke lie kitni permonth salary chaiye ?
@akumallalokesh3423 Жыл бұрын
mama java course
@SONUkumar-eg4xo Жыл бұрын
Hii
@gaysergyalpo8549 Жыл бұрын
Hi I am from Bhutan 🇧🇹🇧🇹🇧🇹🇧🇹 I had finished Python basics What should i learn next. Please respond me🙏🙏🙏🙏🤞
@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
@SonuKumar-gt6wq Жыл бұрын
Hallo mam
@parthasaradireddy9370 Жыл бұрын
HELLO MAM ARE U MARRIED!!!
@samagrajaiswal1773 Жыл бұрын
Nhai bhai esa hoga mai mar jaonga
@bommanaakash5900 Жыл бұрын
Ma'am has a fiancee
@BeastART21 Жыл бұрын
Haan tere baap ke saath
@varaprasadbandaru3916 Жыл бұрын
@@bommanaakash5900 still unmarried
@nitinpandey4925 Жыл бұрын
Bruh maam married h
@ruthpersiyal Жыл бұрын
Mam plz you tell tamil mam i am not understanding mam