-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathprograms.qmd
314 lines (226 loc) · 7.12 KB
/
programs.qmd
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
---
title: "Sample Programs"
format: html
filters:
- pyodide
jupyter: python3
execute:
enabled: true
---
## Introduction to Python
In this tutorial, we will cover the basics of Python programming, including data types, keywords, variables, input/output statements, operators, arithmetic expressions, operator precedence, and evaluation of expressions.
## Data Types
Python supports several built-in data types. Let's explore some of the most common ones:
- **Integer (`int`)**: Represents whole numbers.
- **Floating Point (`float`)**: Represents decimal numbers.
- **String (`str`)**: Represents sequences of characters.
- **Boolean (`bool`)**: Represents `True` or `False`.
>**Example 1**
:::{.panel-tabset}
### Static Template
```{python}
# Demonstrating different data types
# Integer
a = 10
print("Integer:", a, type(a))
# Float
b = 3.14
print("Float:", b, type(b))
# String
c = "Hello, Python!"
print("String:", c, type(c))
# Boolean
d = True
print("Boolean:", d, type(d))
```
### Interactive Cell
```{pyodide-python}
# Demonstrating different data types
# Integer
a = 10
print("Integer:", a, type(a))
# Float
b = 3.14
print("Float:", b, type(b))
# String
c = "Hello, Python!"
print("String:", c, type(c))
# Boolean
d = True
print("Boolean:", d, type(d))
```
:::
### Variables
Variables are used to store data in memory. A variable is created when you assign a value to it using the = operator.
```{pyodide-python}
# Variable assignment
x = 5
y = 2.5
z = x + y
print("x =", x)
print("y =", y)
print("z =", z)
```
### Input and Output Statements
Python provides the input() function to take user input and the print() function to display output.
```{pyodide-python}
# Input and Output
name="justin"
age=32
#name = input("Enter your name: ")
#age = int(input("Enter your age: "))
print(f"Hello, {name}! You are {age} years old.")
```
### Operators
Operators are special symbols used to perform operations on variables and values. Python supports several types of operators:
Arithmetic Operators: +, -, *, /, //, %, **
Comparison Operators: ==, !=, >, <, >=, <=
Logical Operators: and, or, not
Assignment Operators: =, +=, -=, *=, /=, //=, %=, **=
```{pyodide-python}
# Arithmetic Operations
a = 15
b = 4
addition = a + b
subtraction = a - b
multiplication = a * b
division = a / b
floor_division = a // b
modulus = a % b
exponentiation = a ** b
print("Addition:", addition)
print("Subtraction:", subtraction)
print("Multiplication:", multiplication)
print("Division:", division)
print("Floor Division:", floor_division)
print("Modulus:", modulus)
print("Exponentiation:", exponentiation)
```
### Arithmetic Expressions
An arithmetic expression is a combination of numbers, operators, and variables that evaluates to a value.
```{pyodide-python}
# Evaluating arithmetic expressions
expression = (5 + 2) * (10 - 3) / 2 ** 2
print("Expression Result:", expression)
```
### Operator Precedence
Operator precedence determines the order in which operations are performed in an expression. The following list shows the precedence from highest to lowest:
** (Exponentiation)
*, /, //, % (Multiplication, Division, Floor Division, Modulus)
+, - (Addition, Subtraction)
```{pyodide-python}
# Operator precedence
result = 5 + 3 * 2 ** 2 - 1
print("Operator Precedence Result:", result)
```
### Evaluation of Expressions
Python evaluates expressions from left to right, following the precedence rules.
```{pyodide-python}
# Evaluation of expressions
value = (10 + 5) * 2 - 3 / 3
print("Evaluation Result:", value)
```
### Conditional Statements in Python
Conditional statements in Python allow the execution of specific code blocks based on whether a condition is true or false. Let's explore various types of conditional statements.
#### The `if` Statement
The `if` statement tests a specific condition. If the condition is true, the code block under the `if` statement is executed.
Example
```{pyodide-python}
# Example of an if statement
number = 10
if number > 0:
print(f"{number} is a positive number.")
```
:::{.callout-note}
### Explanation
The above program checks if number is greater than 0. Since 10 is greater than 0, the condition is true, and the message is printed.
:::
#### The if-else Statement
The if-else statement allows you to execute one block of code if the condition is true and another block if it is false.
```{pyodide-python}
# Example of an if-else statement
number = -5
if number >= 0:
print(f"{number} is a non-negative number.")
else:
print(f"{number} is a negative number.")
```
:::{.callout-note}
### Explanation
In this example, the program checks if number is greater than or equal to 0. If true, it prints that the number is non-negative. Otherwise, it prints that the number is negative.
:::
>*Example 2*
```{pyodide-python}
age = 20
if age >= 18:
print("You are eligible to vote.")
else:
print("You are not eligible to vote.")
```
:::{.callout-note}
### Explanation
This program checks if a person’s age is greater than or equal to 18. If true, it prints that the person is eligible to vote. Otherwise, it states they are not eligible to vote.
:::
### The elif Statement
The elif statement, short for "else if," allows you to check multiple conditions sequentially. If one of the conditions is true, the corresponding block of code is executed.
```{pyodide-python}
# Example of an elif statement
number = 0
if number > 0:
print(f"{number} is a positive number.")
elif number == 0:
print(f"{number} is zero.")
else:
print(f"{number} is a negative number.")
```
:::{.callout-note}
### Explanation
Here, the program checks three conditions: whether the number is positive, zero, or negative. The elif statement handles the case where number is exactly 0.
:::
```{pyodide-python}
# Another example of an elif statement
marks = 85
if marks >= 90:
grade = 'A'
elif marks >= 80:
grade = 'B'
elif marks >= 70:
grade = 'C'
else:
grade = 'F'
print(f"Your grade is {grade}.")
```
:::{.callout-note}
### Explanation
This program assigns a grade based on the marks obtained. Depending on the range in which the marks fall, the corresponding grade is assigned and printed.
:::
#### Nested if-else Statements
Nested if-else statements allow you to include an if-else statement inside another if-else block for handling more complex conditions.
```{pyodide-python}
# Example of nested if-else statements
number = 25
if number > 0:
if number % 2 == 0:
print(f"{number} is a positive even number.")
else:
print(f"{number} is a positive odd number.")
```
:::{.callout-note}
### Explanation
This example checks if a number is positive and then further checks whether it is even or odd using nested if-else statements.
:::
```{pyodide-python}
# Another example of nested if-else statements
score = 92
if score >= 50:
if score >= 90:
print("Excellent!")
else:
print("Good job!")
else:
print("Better luck next time.")
```
:::{.callout-note}
### Explanation
This program checks if a score is at least 50. If true, it further checks if the score is 90 or above, printing "Excellent!" if it is, and "Good job!" if it isn’t. If the score is below 50, it prints "Better luck next time."
:::