I’m John C Bland II

Husband, Father, Tech Author, Deacon.
Founder of Katapult Media, and full-stack polyglot developer.
Political Free Agents Podcast Host.

I create. I launch.

YouTube Channel

I post regular fun on YouTube like me playing the bass and anything else I find fun. 

Get Something Built

All project work goes through Katapult Media. Business is open. Let’s chat.

Learning Python: Concatenation

I’m learning Python now and using Learn Python The Hard Way, 2nd Edition. Look for a few posts where I detail my adventure. First up, string and number concatenation.

It is simple but I dig this:

print “Hens”, 25+30/6

Output:
Hens 30

The comma adds a space and you can see it appends the math. It is very subtle and simple but I definitely dig this.

One last example showing the comma a space:

print “Hens”, 25+30/6, “!”

Output:
Hens 30 !