Ithu pole ulla language ee oru reetiyil present cheyyunnathu valarae nalla karyamaanu
@anooptube5 жыл бұрын
Thank youuuu
@aneeshjoseph89744 жыл бұрын
very helpful
@anooptube4 жыл бұрын
Thank you bro
@Kizheppadan5 жыл бұрын
nice presentation..good job bro
@anooptube5 жыл бұрын
Thank youu
@RICEPOTFOODGUIDE5 жыл бұрын
Very good videos for computer programming students 👍🏼👍🏼👍🏼
@anooptube5 жыл бұрын
Thank you
@ZakVilayilVlogs5 жыл бұрын
Super tutorial bro 👍🏻 nice presentation 👌
@anooptube5 жыл бұрын
Thank you
@craftzthreadz51025 жыл бұрын
Nannayi manasilayi..😊
@anooptube5 жыл бұрын
🤗
@ALLIN-cq3cv5 жыл бұрын
Simple to understand... thanks
@aswathyachu15545 жыл бұрын
Simple ayi nannayittu explain cheythu
@anguandme5 жыл бұрын
It tutorials kollam
@anooptube5 жыл бұрын
Thank you
@Experiment_UAE5 жыл бұрын
Nice good job
@mujthabamk4634 жыл бұрын
2,3 folder ന്റെ ഉള്ളിൽ ആണക്കിലോ program file കിടക്കുന്നത്??? ' . ' ഇട്ടു പോയാൽ മതിയാകുമോ?
@anooptube4 жыл бұрын
yes
@ruchiyoram-theperfectrecip67975 жыл бұрын
Good class 👍
@THUSHARAPRODUCTIONS5 жыл бұрын
Informative 👍
@rajeshkaippan43475 жыл бұрын
Super
@Dlk-c5 жыл бұрын
We follow your channel. Nice explanation and it's easy to learn in Malayalam. my program always jump in to else.. statement If condition not working. from Calculator_Package.CalculatorFunction import * number1 = input("Enter Number1: ") number2 = input("Enter Number2: ") print(" Select a number from the below List :") print("\t1. Addition") print("\t2. Substraction") print("\t3. Multiplication") print("\t4. Division") print("\t5. Quit") choice = input(" Enter your Choice from above List:") txt = " Your Choice is {}" print(txt.format(choice)) if choice == 1: result = addition(number1, number2) print(str(result)) elif choice == 2: result = subtraction(number1, number2) print(str(result)) elif choice == 3: result = multiplication(number1, number2) print(str(result)) elif choice == 4: result = division(number1, number2) print(str(result)) elif choice == 5: quit(0) else: print("else ! Please enter a Valid number.") can you please check any mistakes in the above codes. thanks
@anooptube5 жыл бұрын
Hi dilak c , i just copy pasted your code and run it. it working perfectly. Could you please tell me your python version, is it 2.7 or 3.. this is I tested code from your program. and output please go through it.. number1 = input("Enter Number1: ") number2 = input("Enter Number2: ") print(" Select a number from the below List :") print("\t1. Addition") print("\t2. Substraction") print("\t3. Multiplication") print("\t4. Division") print("\t5. Quit") choice = input(" Enter your Choice from above List:") txt = " Your Choice is {}" print(txt.format(choice)) if choice == 1: result = "in addition" print(str(result)) elif choice == 2: result = "in sub" print(str(result)) elif choice == 3: result = "in mult" print(str(result)) elif choice == 4: result = "in div" print(str(result)) elif choice == 5: quit(0) else: print("else ! Please enter a Valid number.") Output: anoopp anoopp ~ python test.py Enter Number1: 2 Enter Number2: 6 Select a number from the below List : 1. Addition 2. Substraction 3. Multiplication 4. Division 5. Quit Enter your Choice from above List:3 Your Choice is 3 in mult anoopp anoopp ~ python test.py Enter Number1: 8 Enter Number2: 9 Select a number from the below List : 1. Addition 2. Substraction 3. Multiplication 4. Division 5. Quit Enter your Choice from above List:1 Your Choice is 1 in addition