Looking to start learning Python?

Begin Here

Author: Mike

PyDev of the Week: Mike Pirnat

April 13, 2020 by Mike
This week we welcome Mike Pirnat (@mpirnat) as our PyDev of the Week! Mike is an organizer for PyOhio and an active member of the Python community. You can catch up with Mike on his website. Let's spend some time getting to know Mike! Can you tell us a little about yourself (hobbies, education, etc): […]

Python 101 - Working with Strings

April 7, 2020 by Mike
You will be using strings very often when you program. A string is a series of letters surrounded by single, double or triple quotes. Python 3 defines string as a "Text Sequence Type". You can cast other types to a string using the built-in str() function. In this article you will learn how to: Create […]

PyDev of the Week: Pablo Galindo Salgado

April 6, 2020 by Mike
This week we welcome Pablo Galindo Salgado (@pyblogsal) as our PyDev of the Week! Pablo is a core developer of the Python programming language. He is also a speaker at several Python related conferences. If you'd like to see what projects he is contributing to, you can check out his Github profile. Let's spend some […]

Python 101 - Learning About Dictionaries

March 31, 2020 by Mike
Dictionaries are another fundamental data type in Python. A dictionary is a key, value pair. Some programming languages refer to them as hash tables. They are described as a mapping object that maps hashable values to arbitrary objects. A dictionary's keys must be immutable, that is, unable to change. Starting in Python 3.7, dictionaries are […]

PyDev of the Week - Abigail Mesrenyame Dogbe

March 30, 2020 by Mike
This week we welcome Abigail Mesrenyame Dogbe (@MesrenyameDogbe) as our PyDev of the Week! Abigail is active with the PyLadies organization in Africa and has also helped organize PyCon Africa. Abigail is also a fellow of the Python Software Foundation. Let's spend some time getting to know Abigail better! Can you tell us a little […]

Python 101 - Learning About Tuples

March 26, 2020 by Mike
Tuples are another sequence type in Python. Tuples consist of a number of values that are separated by commas. A tuple is immutable whereas a list is not. Immutable means that the tuple has a fixed value and cannot change. You cannot add, delete or modify items in a tuple. Immutable objects are useful when […]
1 34 35 36 37 38 215
View More

End of content

No more pages to load

Copyright © 2024 Mouse Vs Python | Powered by Pythonlibrary