Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

case in python

def http_error(status):
    match status:
        case 400:
            return "Bad request"
        case 404:
            return "Not found"
        case 418:
            return "I'm a teapot"
        case _:
            return "Something's wrong with the internet"
Comment

python switch statement

def f(x):
    match x:
        case 'a':
            return 1
        case 'b':
            return 2
        case _:
            return 0   # 0 is the default case if x is not found
Comment

python switch

# Python 3.10.0 +
match subject:
    case <pattern_1>:
        <action_1>
    case <pattern_2>:
        <action_2>
    case <pattern_3>:
        <action_3>
    case _:
        <action_wildcard>
Comment

python switch case

match points:
    case []:
        print("No points in the list.")
    case [Point(0, 0)]:
        print("The origin is the only point in the list.")
    case [Point(x, y)]:
        print(f"A single point {x}, {y} is in the list.")
    case [Point(0, y1), Point(0, y2)]:
        print(f"Two points on the Y axis at {y1}, {y2} are in the list.")
    case _:
        print("Something else is found in the list.")
Comment

python switch

>>> def week(i):
        switcher={
                0:'Sunday',
                1:'Monday',
                2:'Tuesday',
                3:'Wednesday',
                4:'Thursday',
                5:'Friday',
                6:'Saturday'
             }
         return switcher.get(i,"Invalid day of week")<div class="open_grepper_editor" title="Edit & Save To Grepper"></div>
Comment

python switch item

def operations(letter):
    switch={
       'a': "It is a vowel",
       'e': "It is a vowel",
       'i': "It is a vowel",
       'o': "It is a vowel",
       'u': "It is a vowel",
       }
    return switch.get(letter,"It is a not a vowel")		# disregard 2nd parameter
operations('a')
Comment

case python

lang = input("What's the programming language you want to learn? ")

match lang:
    case "JavaScript":
        print("You can become a web developer.")

    case "Python":
        print("You can become a Data Scientist")

    case "PHP":
        print("You can become a backend developer")
    
    case "Solidity":
        print("You can become a Blockchain developer")

    case "Java":
        print("You can become a mobile app developer")
    case _:
        print("The language doesn't matter, what matters is solving problems.")
Comment

PREVIOUS NEXT
Code Example
Python :: pyqt5 qtextedit change color of a specific line 
Python :: Hungry Chef codechef solution 
Python :: how to make python into exe 
Python :: reshape python 
Python :: django start app 
Python :: numpy sqrt 
Python :: numpy timedelta object has no attribute days 
Python :: decrypt vnc password 
Python :: python abc 
Python :: python string ends with 
Python :: Spotify API Authentication in Python 
Python :: maximum element in dataframe row 
Python :: pandas show full columns 
Python :: python - find columns that are objects 
Python :: enable time layer arcpy 
Python :: python dictionary pop 
Python :: react-native-dropdown-picker 
Python :: np.tanh 
Python :: selenium python find element by class name with space 
Python :: np.random.exponential 
Python :: delete last message discord.py 
Python :: up and down arrow matplotlib 
Python :: legend for pie chart matplotlib 
Python :: fahrenheit to celsius in python 
Python :: python program to print inverted star pattern 
Python :: duplicates in python list 
Python :: create a date list in postgresql 
Python :: python pandas return column name of a specific column 
Python :: pip install pandas Getting requirements to build wheel 
Python :: creating class and object in python 
ADD CONTENT
Topic
Content
Source link
Name
7+2 =