-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcode.py
188 lines (130 loc) · 3.65 KB
/
code.py
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
#!/bin/python
# Usage:
# python code.py
# Basics
print("Hello, World!") # your first line of code
## Comments
# This is ignored by the python interpreter
"""
This is a multiline comment
using triple double quotes
"""
'''
This is a multiline comment
using triple single quotes
'''
# Data Types
## Variables
a = 10
b = 20
a, b = 10, 20
print(a)
print(b)
## Numbers
a = -10 # int
b = 3.14159 # float
c = -2.2 + 5.3j # complex
print(type(a))
print(type(b))
print(type(c))
print(12121212121212121212121212121212121212121212121212121212121212121212121 + 1)
## Boolean
a = True # bool
b = False # bool
## Strings
str1 = "I like cats." # str enclosed in double quotes
str2 = 'I like dogs.' # str enclosed in single quotes
str1 = 'I\'ll have what he is having.'
str2 = "\"To be or not to be\" - William Shakespeare"
str1 = "I'll have what he is having." # string with single quotes enclosed in double quotes
str2 = '"To be or not be" - William Shakespeare' # string with double quotes enclosed in single quotes
print('C:\some\name')
print(r'C:\some\name')
# Operators
## Arithmetic Operators
a = 5
b = 3
print(+a) # unary addition
print(-b) # unary subtraction
print(2 + 2) # addition
print(8 - 5) # subtraction
print(3 * 5) # multiplication
print(8 / 2) # division
print(11 / 4) # floating point division
print(11 // 4) # floor division
print(10 // 3) # int // int => int
print(10.0 // 3) # float // int => float
print(10 // 3.0) # int // float => float
print(10.0 // 3.0) # float // float => float
print(5**2) # exponentiation, 5 squared
print(10 % 3) # modulus, returns remainder of division
## Comparison Operators
print(5 == 5) # (a == b) returns True if a is equal to b else False
print(5 != 5) # (a != b) returns True if a is not equal to b else False
print(2 < 3) # (a < b) returns True if a is strictly less than b else False
print(2 > 3) # (a > b) returns True if a is strictly greater than b else False
print(7 >= 7) # (a >= b) returns True if a is greater than or equal to b else False
print(7 <= 4) # (a <= b) returns True if a is less than or equal to b else False
## Assignment Operators
num = 8 # a = b num = 8
num += 3 # a = a + b num = 11
num -= 5 # a = a - b num = 6
num *= 6 # a = a * b num = 36
num /= 5 # a = a / b num = 7.2
num //= 3 # a = a // b num = 2.0
num **= 3 # a = a ** b num = 8.0
num %= 5 # a = a % b num = 3.0
print(num)
## Logical Operators
a = True
b = False
print(a and b) # returns True if both the operands are True
print(a or b) # returns True if either of the operand is True
print(not a) # returns True if operand is False
# Control Flow
## if Statement
raining = True
if raining: # the condition is True
print("Stay at home")
raining = False
if raining: # the condition is False
print("Stay at home")
else:
print("Let's go outside")
age = 21
if age < 4: # False
print("Join nursery")
elif age < 18: # False
print("Stay in school")
elif age < 24: # True!
print("Work hard in university")
elif age < 60: # skips
print("Get working")
else: # skips
print("Time to retire")
print("Stay at home" if raining else "Let's go outside") # conditional expression
## while Loop
i = 0
while i < 5: # loop over numbers from 0 through 4
print(i)
i += 1
i = 0
while i < 5:
if i == 3: # breaks the loop when i = 3
break
print(i)
i += 1
i = 0
while i < 5:
if i == 3: # skips the rest of the code block when i = 3
i += 1 # causes an infinite loop otherwise!
continue
print(i)
i += 1
## for Loop
for c in "python": # loop over a sequence of elements
print(c)
for i in range(5): # loop over numbers from 0 through 4
print(i)
for i in range(1, 10, 2): # loop over numbers from 0 through 9 picking every 2nd value
print(i)