Advertisement · 728 × 90

Posts by Monty @ The Python Coding Place

Video

You get the idea…

…readers love The Python Coding Book

thepythoncodingplace.com/the-python-c...

2 months ago 1 2 0 0
Preview
The Python Coding Place The Place to Learn Python

Your call…

There’s

• a super-personalised one-to-one 6-month mentoring option
$ 4,750

• individual one-to-one sessions
$ 125

• a self-led route with access to 60+ hrs of exceptional video courses and a support forum
$ 400

Which The Python Coding Place student are you?

thepythoncodingplace.com

2 months ago 2 1 0 0
Preview
live one-to-one sessions ACCESS YOUR TUTOR WHEN YOU NEED SUPPORT • LIVE ONLINE SESSIONS Learn PythonWith One-to-One Sessions Do you learn best in a 1-1 setting? Simple and flexible with no long term commitment Book one les…

new page • more Monty…
thepythoncodingplace.com/live-one-to-...

2 months ago 1 0 0 0

I reckon `.__monty__()` should exist as a valid special method—the specialest of all special methods.

Who’s with me on this? Let’s start a petition…

2 months ago 0 0 1 0

No coding knowledge + The Python Coding Place membership = Intermediate programmer

Little coding knowledge + The Python Coding Place membership = Great programmer

Intermediate coding knowledge + The Python Coding Place membership = Superpower-like programmer

2 months ago 0 0 0 0

The meaning of life, the universe, and everything is…

…Python

Of course!

What else could it be.

2 months ago 0 0 0 0
Preview
The Python Coding Place All Course Bundle Become a member of The Python Coding Place. Join through a monthly subscription or a one-time fee to get access to everything. This is the place to learn Python coding

What's better than a thorough, relaxed, and friendly Python course?

12 of them (plus a bit more, too), all in one bundle, all for just $400

…and yes, you get access to a forum where you can ask questions, too

The only risk is in missing out…

thepythoncodingplace.thinkific.com/bundles/the-...

2 months ago 0 1 1 0
Preview
A Python Tale: A relaxed programming course for beginners A different way of learning to code in Python. This flagship course takes you through the basics of programming in a teaching style that's friendly and relaxed, and focussed on clarity and really unde...

Can I use pen and paper to count words?

Only joking, I also read The Python Coding Book, after all!

thepythoncodingplace.com/the-python-c...

…and indeed I've watched A Python Tale, which also includes this example:

thepythoncodingplace.thinkific.com/courses/a-py...

2 months ago 0 0 0 0
Advertisement
a_person_in_silhouette_walking_in_a_relaxed_manner with text: Master Python with a one-to-one mentor

a_person_in_silhouette_walking_in_a_relaxed_manner with text: Master Python with a one-to-one mentor

Do you like our new banner?

2 months ago 1 1 0 0

These humans, they're always going on about coffee. That's the one thing that's constant about programmers…

2 months ago 0 0 0 0

What was/is the trickiest topic to learn and master for you when moving from beginner* to intermediate* level in Python?

*[you can define these terms whichever way you want]

2 months ago 0 2 2 0

That feels very much like an ongoing process. But yes, agreed. There are many patterns that are specific to beginners and are never present with more seasoned programmers

2 months ago 0 0 0 0

What was/is the trickiest topic to learn and master for you when moving from beginner* to intermediate* level in Python?

*[you can define these terms whichever way you want]

2 months ago 0 2 2 0

Very limited number of spots available

Priority given to current members of The Python Coding Place.

Remaining slots, if any, prioritised based on date of first enquiry

3 months ago 0 0 0 0

Interested? The first step is to get in touch so we can figure out whether this mentorship is the right fit for you. We'll explore your goals and current experience in a live Zoom chat.

3 months ago 0 0 1 0
Advertisement

This mentorship is fully personalised. And this means that there's built-in flexibility to suit your other life commitments. Need to pause for a few months? No problem. You can then resume when you're ready.

3 months ago 0 0 1 0

- Lifetime access to all the courses, your chat with your mentor, the recordings of the live sessions with your mentor and the explainer videos.

3 months ago 0 0 1 0

- Custom videos: No need to wait until the next live session to get a bit more than text communication. Your mentor will record short videos to answer your questions when needed.

3 months ago 1 0 1 0

- Access to all the video courses at The Python Coding Place. But don't worry about where to start—your mentor will create a plan with you.

3 months ago 0 0 1 0

- A direct line of communication with your mentor through a private comms channel (on Discord or Slack). Ask as many questions as you want. *Guaranteed reply within 24 hours (usually quicker) on weekdays.*

3 months ago 0 0 1 0

- One-to-one Zoom sessions with your mentor to ask questions, discuss your code, plan projects, and dive deeper into topics. *Up to four one-hour sessions per month.*

3 months ago 0 0 1 0

Here's what you get:

- A personal one-to-one mentor to guide you throughout your learning. You and your mentor will create a programme based on your goals and experience, and you'll review progress regularly.

3 months ago 0 0 1 0

Ready to take your Python to the next level (or two)?

You've asked for this, so here it is:

**A 6-month one-to-one Python mentorship programme.**

Your programme, tailored for you, delivered to you—just you.

Interested? Get in touch…

3 months ago 0 1 1 0
Advertisement

…and if you want to get ALL the courses available at The Python Coding Place
+ The Python Coding Book e-book
+ Access to a forum where you can ask us questions

(And yes, there's a 30-day money-back guarantee. We're that confident of our courses!)

thepythoncodingplace.thinkific.com/bundles/the-...

3 months ago 1 1 0 0

It’s Tale not Tail—I always get confused…

3 months ago 3 2 0 0

Who thinks it's time for an early December give-away?

I do…

So here's an unmissable offer for the first 100 Python learners

Our flagship beginners' course—A PYTHON TALE—is FREE with this link

But there are only 100 free tickets available

Hurry

thepythoncodingplace.thinkific.com/enroll/27273...

3 months ago 2 1 0 2
>>> agent_id = 7 
>>> agent_name = "James Bond" 
>>> f"Agent {agent_id:03}: {agent_name}" 
'Agent 007: James Bond'

>>> agent_id = 7 >>> agent_name = "James Bond" >>> f"Agent {agent_id:03}: {agent_name}" 'Agent 007: James Bond'

Need leading zeros to display your secret agent codes?

No worries…Python's f-strings got you covered

```
>>> agent_id = 7
>>> agent_name = "James Bond"
>>> f"Agent {agent_id:03}: {agent_name}"
'Agent 007: James Bond'
```

Note the format specifier `:03`

4 months ago 0 1 0 0

"…Python is said to be simple but becomes a bit mysterious when explanatory material bypasses those important points that provide the programmer insight as to "why". Knowing the "why" is essential to making real progress."

4 months ago 1 0 0 0

Here's what Jim said:
"I found this to be an excellent book. I'm not a professional programmer but have worked with Python periodically for some time. The author's explanations provide behind the scenes insights that I find are essential to understanding Python, but that are missed by other authors…

4 months ago 1 0 1 0
Review for The Python Coding Book: "I found this to be an excellent book. I'm not a professional programmer but have worked with Python periodically for some time. The author's explanations provide behind the scenes insights that I find are essential to understanding Python, but that are missed by other authors. Python is said to be simple but becomes a bit mysterious when explanatory material bypasses those important points that provide the programmer insight as to "why". Knowing the "why" is essential to making real progress."

Review for The Python Coding Book: "I found this to be an excellent book. I'm not a professional programmer but have worked with Python periodically for some time. The author's explanations provide behind the scenes insights that I find are essential to understanding Python, but that are missed by other authors. Python is said to be simple but becomes a bit mysterious when explanatory material bypasses those important points that provide the programmer insight as to "why". Knowing the "why" is essential to making real progress."

Jim gets it…

…and you can, too. Get your copy here:
thepythoncodingplace.com/the-python-c...

4 months ago 2 1 1 0