સોમવાર, 20 ડિસેમ્બર, 2021

python if else

2. Python if else 

ચાલો પેહલા flow chart ની મદદ થી આપણે સમજી લઈએ કે ખરે ખર if else કામ કઈ રીતે કરે છે.

Flow chart


If else statement માં Syntax :-

if(condition):
    Statements(1)
else:
    Statements(2)
Statements (3)

If else જો 
condition સાચી True પડે તો 
Statements(1)
Statements (3)
આ પ્રમાણે run થશે.

અને જો condition ખોટી False થાય તો
Statements (2)
Statements (3)
આ પ્રમાણે run થશે.

Example :

x = 7;
if(x >= 10):
    print("wafer is your");
else:
    print("sorry not sufficient money")
print("Thank you!");

 

Output :


અહી ઉપર ના example માં જેમ આગળ જોયું તેમ મારે 10 ની વેફર લેવાની છે.

અહી x ની કિંમત 7 છે એટલે x>=10 એ ખોટું પડે તેથી else વાળો part run થાય છે.એટલે ' sorry not sufficient money  '  print થાય છે. અને if else પતી ગયા પછી ' Thank you! ' વાળું statement run થાય છે.

Example :

x = 10;
if(x >= 10):
    print("wafer is your");
else:
    print("sorry not sufficient money")
print("Thank you!");

 

Output :


ઉપર ના example માં હવે આપણે x ની કિંમત બરાબર 10 કરી એટલે x >= 10 condition સાચી પડી એટલે 
If ની નીચે true વાળા part નું ' wafer is your ' run થાય છે.
અને ત્યાર બાદ if else પત્યા પછી જે ' Thank you! ' વાળું print થાય છે.

ટિપ્પણીઓ નથી:

ટિપ્પણી પોસ્ટ કરો

Python tkinter

 Tkinter એ python ની graphics tool library છે. Tkinter library ની મદદ થી આપણૅ કમ્પ્યુટર applaction બનાવી સકે. હમણાં સુધી આપણૅ અલગ અલગ script...