7. Flow Structure – Selection (Conditionals)
شرطی یا انتخابی ساختار
•
شرط یک ارزیابی برای گیری تصمیم روش
•
های کد
if – else – elseif
ای مرحله ارزیابی برای
•
های کد
switch
فرض پیش های حالت ارزیابی برای
https://hosseinzahed.com
hello@hosseinzahed.com
7
number = 10
if number > 0:
print('Positive number')
else:
print('Negative number')
lang = input("What's the programming language you want to learn? ")
match lang:
case "Python":
print("You can become a Data Scientist")
case “Java":
print("You can become a mobile app developer")
case _:
print("The language doesn't matter, what matters is solving problems.")