Blogs

Python

It is an interpreted programming language.

type()

This function determine the type of the parameter.

Example

>>> type(1)
<type 'int'>

str()

This function convert the parameter into a string.

Example

>>> str(1)
'1' 

len()

This function determines the lenght (amount of characters) within the parameter

Example

>>> len("Alejandro")
9

print()

This function prints the parameter

DevOps Talk in the Tech Pub

Plan

  • What DevOps is
  • How to implement DevOps
  • The 3 ways
  • The 1st way
  • The 2nd way
  • The 3th way
  • The Phoenix Project
  • The DevOps Hand Book
  • The Goal

What DevOps is ?

There is not a given definition about DevOps, however I will borrow an idea from Ben Lambert

DevOps is the philosophy of the efficient development, deployment and operations of the highest quality software possible

There is no a right way to implement DevOps

What no to do

Pages

Subscribe to RSS - blogs