-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswitch_case.html
51 lines (44 loc) · 1.99 KB
/
switch_case.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Switch Case</title>
<link rel="stylesheet.css" href="stylesheet.css" />
</head>
<body bgcolor="#5778C8">
<header>
<div class="container">
<div class="header-left">
<img class="logo"
src="https://prog-8.com/images/html/advanced/main_logo.png" />
</div>
<div class="header-right" align="center">
<h1> Switch Case in Python</h1>
</div>
<span class="fa fa-bars menu-icon"></span>
</div>
</header>
<!--top-->
<div class="top-wrapper">
<div class="container">
<h1><i>Switch Statement</i></h1>
<h4>
In computer programming languages, a switch statement is a type of selection control mechanism used to allow the value of a variable or expression to change the control flow of program execution via search and map.
</h4>
<h4>
In computer programming languages, a switch statement is a type of selection control mechanism used to allow the value of a variable or expression to change the control flow of program execution via search and map.
</h4>
<h3>
Though many other languages offer switch statements, python does not have any switch statement. According to PEP-3103, it assure about the fact. However if you like switch case statement in other programming languages, you can create code snippet that works like a switch case statement in python.
</h3>
</div>
</div>
<!--Footer-->
<footer>
<div class="container">
<img src="https://prog-8.com/images/html/advanced/footer_logo.png" />
<p>Learn to code, learn to be creative.</p>
</div>
</footer>
</body>
</html>