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?
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()
#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 ")
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
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 😊😊😊
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?
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
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?
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()
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()
Great ma'am
Thanks so much
Thank you so much! I have followed you do this project and it's successful.
#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 ")
I did this using object oriented programming ,please teach us object oriented programming mam😊
Will start soon
Thank you when i was yuniversity
Your vidio helped me thank you sister
So I was missing my newspaper lately . Good that I found it here ! 😋😋
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
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
😊😊😊
thanks you mam
Mam can you create a what's app group or a doubt class for Python
I have a few doubts
😝😝
𝑳𝒐𝒗𝒆 𝒇𝒓𝒐𝒎 𝒐𝒅𝒊𝒔𝒉𝒂...❤
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?
Thank you mam❤️
Thank you mam
Oops concept in python plz mam
how you make the code intended by selecting it? what key you use?
Thankyou mam❤️
Ma'am please complete c++series oops concept programming
Nice goggles 😚
Can you teach VEX .
Love you mam❤😘😘
Lob you mam🥰😍😘
Lecture pe dhyan do madam par nahi 😂
😈
@@rohanbhalerao8066 thum bhi padai mai Dhyan dhey mere comment pe nai🥲
Just for fun bro
@@Whiro__08 tum bhi bro
Ma'am
Good Evening
Please make an Excel Course Advance Level.
❤
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
mam,what is the short cut key to move the block of code into indentation?
tab key on your keyboard
I love your voice mam❤❤😊
Voice chodo Gyan lelo
@@flynneugene2675ha sahi bat he bhai
provide the notes of this project on description link
maam how many vidoes are left in this course
mam when will this course will end
Next video
What if it's a white whole ?
That's emitting the energy from its Black hole
Not possible
How can I contact you for classes
Babe! You are gorgeous ❤
don't know why, i am interested to read some news today 😅😅
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 🙏🙏🙏
Exam hai and kuchh samjh nhi aaya hai so please please 🙏🙏🙏🙏
Ma'am if a student has completed his BCCA is he eligible for NIMCET Exam?? Help🗿🙏
Nice t shirt mam😂😂
2nd view
Mam aapse sadi krne ke lie kitni permonth salary chaiye ?
mama java course
Hii
Hi I am from Bhutan 🇧🇹🇧🇹🇧🇹🇧🇹
I had finished Python basics
What should i learn next.
Please respond me🙏🙏🙏🙏🤞
Go deep in object oriented programming ,file handling, Django framework , build a massive project that will you all the basic things you've learnt
Hallo mam
HELLO MAM ARE U MARRIED!!!
Nhai bhai esa hoga mai mar jaonga
Ma'am has a fiancee
Haan tere baap ke saath
@@bommanaakash5900 still unmarried
Bruh maam married h
Mam plz you tell tamil mam i am not understanding mam
Apki koi Sister he kya ? 😊😊
Aapko dekhe ya pde
Newspaper lg rhe ho
Mam r u married
First view ❤