Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Here's a quick Python program to check that it's working. Copy this into a file called test-metview.py

Code Block
languagepy
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!"

...