Page 253 - COPA VOL II of II - TP -Punjabi
P. 253
IT ਅਤੇ ITES (IT & ITES) ਅਭਿਆਸ 1.40.06
COPA - ਚੋਣਵੇਂ ਮੋਡੀਊਲ 1 - ਪਾਈਥਨ ਭਵੱਚ ਪ੍ਰੋਗ੍ਾਭਮੰਗ
ਬ੍ਰਾਂਭਚੰਗ ਸਟੇਟਮੈਂਟਾਂ ਦੀ ਵ੍ਤੋਂ ਕ੍ਨ ਵਾਲੇ ਕੋਡ ਖੰਡਾਂ ਦਾ ਭਨ੍ਮਾਣ ਅਤੇ ਭਵਸ਼ਲੇਸ਼ਣ ਕ੍ੋ (Construct and
analyze code segments that use branching statements)
ਉਦੇਸ਼: ਇਸ ਅਭਿਆਸ ਦੇ ਅੰਤ ਭਿੱਚ ਤੁਸੀਂ ਯੋਗ ਹੋਿੋਗੇ
• ਸਟੇਟਮੈਂਟ ਜੇ ਸਟੇਟਮੈਂਟ
• ਜੇਕ੍-ਹੋ੍ ਦੱਸੋ
• ਸਟੇਟ ਨੇਸਟਡ-ਜੇ
• ਸਟੇਟ if-elif-else.
ਲੋੜਾਂ (Requirements)
ਟੂਲ/ਉਪਕ੍ਨ/ਮਸ਼ੀਨਾਂ (Tools/Equipment/Machines)
• ਡੈਸਕਟਾਪ/ਲੈਪਟਾਪ ਪੀਸੀ - 1 No. • ਪਾਈਥਨ ਿਰ 3.10.5 ਜਾਂ ਨਿੀਨਤਮ - 1 No.
• ਿਭੰਡੋਜ਼ OS - 1 No.
ਿਭਧੀ (PROCEDURE)
ਟਾਸਕ 1 : ਜੇਕ੍ ਬਭਆਨ
1 ਜੇ ਬਭਆਨ ਹੇਠ ਲਭਖੇ ਅਨੁਸਾਰ ਹੈ: Welcome to If Statement
ਉਦਾਹਰਨ 1: Example 2:
i = 10 i = 10
if (i < 15): print(“10 is less than 15”) if (i > 15): print(“10 is less than 15”)
print(“Welcome to If Statement”) print(“Welcome to If Statement”)
Output: Output:
10 is less than 15 Welcome to If Statement
ਟਾਸਕ 2 : ਜੇਕ੍-ਹੋ੍
1 ਜੇਕਰ-ਹੋਰ ਹੇਠ ਲਭਖੇ ਅਨੁਸਾਰ: Fig 1
ਉਦਾਹਰਨ 1:
# python program to illustrate If else statement
#!/usr/bin/python
i = 20
if (i > 15):
print(“i is smaller than 15”)
print(“I’m in if Block”)
else:
print(“i is greater than 15”)
print(“I’m in else Block”)
print(“I’m not in if and else Block”)
Output:
is smaller than 15
i’m in if Block Output
i’m not in if and else Block
239