Skip to content
forked from h5py/h5py

HDF5 for Python -- The h5py package is a Pythonic interface to the HDF5 binary data format.

License

Notifications You must be signed in to change notification settings

SallyHodkiewicz/h5py

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Part II: Foundations of Programming

Note: Before getting started on these exercises, please be certain that you've read through the root README.md file in this repository.

Exercises

Basic Requirements

Numbers

  1. Enter the following expressions into your console.

    1 + 2
    3 * 5
    5 / 4 - 13
    5000 * 234
    1073 / 57 + 200
  2. Why are the values produced by the following two expressions different? What are they?

    3 + 2 * 4 - 1
    (3 + 2) * (4 - 1)
  3. Calculate 50 years in minutes using the console.

  4. What is the percentage of letters in the english alphabet that are vowels (including y)? Use the console to find out.

  5. Try the following expressions in the console:

    6 % 2
    42 % 10
    5 % 2
    6 % 3
    7 % 4
    100 % 12

    What is the significance of the result? How does the % (modulus) operator work?

  6. Try the following:

    3 % 2
    4 % 2
    5 % 2
    6 % 2

    What do the results tell you about the first operand to the modulus operator?

Strings

  1. Write a string that represents your full name.

  2. Write a string that represents your favorite food.

  3. Use the + operator to combine (known as concatenation) two or more strings, e.g.:

    // Your first and last names
    "John" + " " + "Doe"
    • Your first and last names (as shown above)
    • Your best friend's full name
    • Your home town, state and country
  4. Fix the errors in the following strings:

    Where are all the quotes?
    'hmm something is not right"
    'Do other ' * 'operators work with string concatenation?

About

HDF5 for Python -- The h5py package is a Pythonic interface to the HDF5 binary data format.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 55.4%
  • Cython 40.0%
  • C 3.3%
  • Makefile 0.6%
  • Shell 0.4%
  • Batchfile 0.2%
  • Xonsh 0.1%