...
Here's a quick Python program to check that it's working. Copy this into a file called test-metview.py
| Code Block | ||
|---|---|---|
  | ||
import metview as mv
# call Metview's built-in function to return a lower case string
print(mv.lowercase('Hello World!')) # should output "hello world!" | 
...