Dive into the world of programming, software engineering, machine learning, and all things tech through my channel! I place a strong focus on Python and JavaScript, offering you an array of free resources to kickstart your coding journey and make your mark in the software engineering and programming fields. My mission is to deliver the finest quality tech and programming tutorials online, ensuring you receive top-notch education right at your fingertips.
Tech With Tim
Were you able to solve this weeks coding challenge by guessing the output below?
Don't miss next weeks by signing up for my free coding newsletter here: www.techwithtim.net/newsletter
I'll send you insightful emails, weekly coding challenges, unique coding project ideas and more!
Oh, and you'll also get a free bonus resource for signing up...
2 weeks ago | [YT] | 682
View 41 replies
Tech With Tim
🚀 How are you using GitHub Copilot?
AI coding tools have completely changed my workflow over the last two years, and I know I’m not the only one. Whether it’s generating unit tests, stubbing classes, or even building full features—Copilot has been a game-changer.
Microsoft is running #CodingWithCopilot to highlight how devs are using Copilot to make their jobs easier. Got a cool story? Share it on YouTube, X, Instagram, or LinkedIn, or anywhere you can use a hashtag, using the hashtag #CodingWithCopilot for a chance to be featured by Microsoft!
I'll also be checking submissions and might shout out some in a future video—so tag me! 👀🔥
Big thanks to GitHub Copilot and Microsoft for sponsoring this post. Can’t wait to see what you’ve built! 🚀 #Sponsored
3 weeks ago | [YT] | 178
View 3 replies
Tech With Tim
Let me ask you two quick questions...
1️⃣ Do you dream of becoming a Python developer?
2️⃣ Are you stuck without a clear roadmap?
If you answered YES, I’ve got something for you...
I’ll send you 3 Proven Python Developer Roadmaps (for free!) that actually work.
Grab them here before they’re gone 👇
newsletter.techwithtim.net/python-roadmaps
1 month ago | [YT] | 99
View 15 replies
Tech With Tim
Want to make money from coding?
I put together a free guide that breaks it down step by step. Sign up for my newsletter, and I’ll send it straight to your inbox.
Even if the guide isn’t for you, the newsletter is worth it—I share coding challenges, project ideas, and practical tips every week to help you improve.
No spam, just useful content.
Sign up here: www.techwithtim.net/newsletter
1 month ago | [YT] | 503
View 17 replies
Tech With Tim
In 3 days I’m closing my mentorship for some time. This is your last chance to join early and get more guidance from me than ever! Click here to apply: training.techwithtim.net/
In the meantime try to find the output of this python program:
def outer():
x = 5
def inner():
nonlocal x
x += 1
return x
return [x for _ in range(3) if inner() > x]
print(outer())
3 months ago | [YT] | 239
View 20 replies
Tech With Tim
Happy holidays & merry Christmas to those that celebrate.🎄I have a Python related gift for you so keep reading...
Paste this code in your editor and run it for my surprise.
def merry_christmas(height):
for i in range(height):
spaces = " " * (height - i - 1)
stars = "*" * (2 * i + 1)
print(spaces + stars)
trunk_width = height // 3 if height > 3 else 1
trunk_height = height // 5 if height > 5 else 1
trunk = " " * (height - trunk_width // 2 - 1) + "*" * trunk_width
for _ in range(trunk_height):
print(trunk)
merry_christmas(10)
Happy holidays!
3 months ago | [YT] | 472
View 25 replies
Tech With Tim
Ready to be confused? What does this Python code output?
print(type(type(type(int)))))
Get a FREE guide on "How to Make Money From Coding" from my newsletter: techwithtim.net/newsletter
3 months ago | [YT] | 254
View 24 replies
Tech With Tim
What does this code do? 🤔
x = lambda y: y * 2
print((x := x)(5))
Get a FREE guide on "How to Make Money From Coding" from my newsletter: techwithtim.net/newsletter
3 months ago | [YT] | 157
View 9 replies
Tech With Tim
What will the following code print? 🤔
x = {'a': 1, 'b': 2}
y = {'b': 3, 'c': 4}
z = x | y
print(z)
Get a FREE guide on "How to Make Money From Coding" from my newsletter: techwithtim.net/newsletter
3 months ago | [YT] | 513
View 26 replies
Tech With Tim
What does the following Python code output?
x = "hello"
x[1] = "a"
print(x)
Get a FREE guide on "How to Make Money From Coding" from my newsletter: techwithtim.net/newsletter
3 months ago | [YT] | 500
View 29 replies
Load more