Python 3.4 - Integers vs. Strings

In Python you can create data types but there are different kinds. The two main types are integers, or numbers, and strings, or words. Now a string can be a integer, but it will be treated as a string. (i.e. a = 42 is a integer, but a = '42' is a string, just as a = 'panther' is a string) Notice that the quotations are used to indicate a string.

https://www.youtube.com/watch?v=RLpa0vVbY6U

Comments

Popular posts from this blog

Python 3.4 - Caesar Cipher

UML - Use Case Diagram