-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIntroduction to Python.py
224 lines (94 loc) · 2.38 KB
/
Introduction to Python.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
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
#!/usr/bin/env python
# coding: utf-8
# # MolSSI Workshop
# ## Introduction Lesson
# This is the introductory lesson to the MolSSI python workshop.
# In[1]:
7+3
# In[2]:
deltaH = -541.5
deltaS = 10.4
temperature = 298
deltaG = deltaH - temperature*deltaS
# In[3]:
print(deltaG)
# print is a mechanism that will operate the actual function.
# In[4]:
type(deltaG)
# Float is a data point that is has decimals. Int is an integer.
# In[5]:
deltaG + 50
# In[6]:
deltaG_string = str(deltaG)
# In[7]:
print(deltaG_string)
# In[8]:
deltaG_string + 50
# In[9]:
type(deltaG_string)
# String is something that is just characters, that is why we cannot do operations.
# In[10]:
sentence = 'this is a string'
# In[11]:
print (sentence)
# In[12]:
# this is how you set up a list data structure
energy_kcal = [ -13.4, -2.7, 5.4, 42.1]
# In[13]:
print(energy_kcal)
# In[14]:
# type the list name : list_name[index]
# Python you always start counting at 0. The first negative number belongs to 0 (-13.4 = index 0).
# In[15]:
print(energy_kcal[1])
# In[16]:
len(energy_kcal)
# In[17]:
length_list = len(energy_kcal)
print(length_list)
# This is how to find the length of the list and to create a function with it.
# In[18]:
print(F'The length of my list is length_list')
# In[19]:
print(F'The length of my list is {length_list}. ')
# In[20]:
# Taking a slice - when you make a list that is a subset of another list.
# new_list = old_list [start:end]
# It is going to start from 0 up to 2 (excluding 2)
short_list = energy_kcal[0:2]
print(short_list)
# In[21]:
short_list = energy_kcal[:2]
print(short_list)
# In[22]:
slice1 = energy_kcal[1:]
slice2 = energy_kcal[:3]
# In[23]:
print(F'slice 2 is {slice2}. ')
# In[24]:
print(F' slice 1 is, {slice1}. ')
# In[25]:
print(energy_kcal)
# In[26]:
print(energy_kcal[2])
# In[27]:
energy_kcal[2]*4.184
# In[28]:
#need a colon to create indentation
for number in energy_kcal :
kj = number * 4.184
print(kj)
# In[30]:
#make a new list with the kj values (get rid of the indent before printing)
energy_kj = []
for number in energy_kcal :
kj = number * 4.184
energy_kj.append(kj)
print(energy_kj)
# In[32]:
negative_energy = []
for number in energy_kcal :
if number < 0 :
negative_energy.append(number)
print(negative_energy)
# In[ ]: