Presentation Intro To Python and Metocean Data Analysis
Presentation Intro To Python and Metocean Data Analysis
Presented by:
Dinda Mazeda
Singapore, 28 November 2020
WHAT IS METOCEAN?
Metocean
• Wind
• Wave
• Tide
• Current
• Salinity
• Density
• Temperature
• Atmospheric Pressure
• Cloud cover
• Etc..
Reference: https://www.imarest.org/reports/650-metocean-procedures-guide/file
Introductory Video:
https://youtu.be/inN8seMm7UI
C List = [ A, B, C, D, E ]
KEY VALUE
A 1
B 2
Dictionary = {A:1, B:2, C:3, D:4, E:5}
C 3
D 4
E 5
0 A
1 B
2 C List = [ A, B, C, D, E ]
3 D
4 E
B List = [ A, B, C, D, E ]
C
For i in List:
D print (i) #order to python to do something
E
#the result will be
A
B
C
D
E
B List = [ A, B, C, D, E ]