Python Basics Course

  1. Printing Strings and Numbers
  2. Python Variables
  3. Python name conventions
  4. Python Comments
  5. What is a Python Function
  6. What is a Python Parameter
  7. Python While loops
  8. Python Modulo
  9. Python Square Roots
  10. Python Exponents
  11. Python Division
  12. Python Math Order of Operations
  13. Python Slices
  14. Convert the string ‘1234’ to be an integer
  15. How to define a Python function
  16. Create a function that takes a string and converts it to a numeric
  17. Take five numbers and get the max
  18. Take five numbers and get the min
  19. Prompt for 5 numbers and return the max
  20. Prompt for 5 numbers and return the min
  21. Prompt the user for two numbers, and print the sum
  22. Strip the blanks from this string” ‘ Hello    ‘ and print
  23. Python Replace
  24. Adding zero’s in front of a number 
  25. Strip the blanks on the left side of  ‘    Hello     ‘ and print
  26. Strip the blanks after ‘     Hello     ‘ and print.
  27. Strip the blanks before and after ‘   Hello   ‘ and print
  28. Use raw_input to capture your first and last name.  Print your full name.
  29. Use raw_input to capture your first and last name in lowercase.  Define a function that returns your full name with the first letter of both names in uppercase.
  30. Create a variable called name and assign your name.  Get the string length and divide it by two.  Print the word odd or even depending on the number of characters in your name.
  31. Splitting variables with Python
  32. Create a function that adds 2 numbers.  Call the function and print the result
  33. Get the week number for any date and print
  34. Get the month for any date and print
  35. Create a function that call another function
  36. Convert celcius to F and print
  37. Use a for loop to print each name in the list.
  38. Load a list with super hero’s and count the number of hero’s in your list.
  39. Use a for loop to print each name that is in an even position.
  40. Load a list with super hero’s and print the names in an even position.
  41. Use a for loop to print the first character of each name in the list.  Print them on separate lines.
  42. Use a for loop to print the first character of each name in the list.  Print them all on one line.