What I use to learn (the BEST IT training): ntck.co/itprotv (30% off FOREVER) *affiliate link FREE Python Lab: ntck.co/ep2pylab Test your knowledge!! (quiz): ntck.co/pyquizep2 Support the course: ntck.co/pythonrightnow 🔥🔥Join the NetworkChuck membership: ntck.co/Premium **Sponsored by ITProTV
Calmness??? Maybe for a caffeine addict (yes, it _does_ take one to know one..lol.) He does do well at keeping your attention and making things understandable for everyone.
Probably the wrong video to comment this on but I cannot thank you enough Chuck for this content. I had no idea about networking until I stumbled upon your videos. I absolutely fell in love and am currently studying for my CCNA and have hopes of deep diving into Python after. I also live in Texas so I’d love to meet you one day and be able to shake your hand for all the work you do for the community. Again…THANK YOU THANK YOU!!!
Chuck always with the dub when competing against my ADHD! Seriously, your production quality & teaching skills make learning these languages so much more captivating. Thank you for everything that you do!!!
i really don't like programming but with you bro i can learn anything, your style is so motivational better than most of my teachers back at university thanks bro.
I've tried learning Python on and off for a year now and it always gets to a point where it just becomes dry. Kind of to be expected from learning code. But that was the most down to earth way to learn that was also fun. That's a testament to the teacher's ability to teach as much as the teaching method. I'm hooked and can't wait for the next one. Phenomenal job!
To combine the order variable with the print string, you repeat what you did with the name input. You change the print function to an order = input function while keeping the string in the parentheses. And once again I am loving this series as you've done a good job at explaining what is happening and providing opportunities to let us try and solve these ourselves with what's been taught so far. Even if we get it wrong, we can still observe your answer and understand how it works. I even went a little further and took what I learned from your first lesson and applied it to this one by making a multi-line string for the menu so that it appears as a list rather than a sentence, and made use of line breaks to space out the lines when it runs. Looking forward to the next lesson!
if you ask me this series is going to be better than most python course series, he is calm and entertaining while most others are so serious and stiff, the fact that he can entertain us WHILE preparing us for our possible jobs great work bro keep it up! :)
order = input(print("Here's the menu, Take your time to choose and tell me when you've decided. " + menu)) I personalised it a little bit. Nice series btw, even dough it's from last year it's helping me a lot, thx.
Happy to see this series continue! I’m already up to common string methods but I’ll watch whatever Chuck puts out on Python simply because he makes any topic incredibly accessible! Awesome video @NetworkChuck!
@@NetworkChuckhey bro thank you so much I’m on my coding era I’m young yes you have that right I wanna Learn a language so I can have fun, make a game and show my IT teacher.
solution of the challange in row 13 instead of print , you just write order = input ( all that stuff) and done you can add and extra " " if you'd like to have the input in another line (aesthetics) thanks chuck
@@Lalalalala05-g6z I believe this is one way it could work>>> order = input("Which coffee would you like? ") print("Okay, " + name + ". Your " + order + " will be ready in a few moments.") At least it worked for me.
I've tried so many Python tutorials, but this is on a whole different level! He just has a way of keeping you glued to the screen even though he only showed a print function and a string. Its crazy!
15:31 I wrote the code like this, basically wraping up the whole thing print("Welcome to the coffee shop!") name = input("what's your name? ") print("Hi "+ name +", what would you like to order?") print("We have Americano, Espresso, Latte, Cappuccino and Frappuccino") coffee = input() print("Great one " + coffee + " coming right up!")
Challenge answer: order = input(name + ", what would you like from the menu today? Here is what we are serving. " + menu + " ") print("Sounds good " + name + ", we'll get that " + order + " ready in no time") Then probably do some string checks to make sure we actually get something on the menu lol
I didn't even realize it was a 17 mins video, honestly I always click off long videos but tbh, you kept engaged and it was so fun! keep up the good work ❤
Thanks for this series, Chuck! I've started to learn Python a couple of times, but you make it much more accessible than anyone else. Keep up the great work!
Love this Thanks Chuck, doing a master's in computer science,now working on data structures and algorithms Working on using variables and classes in python, your videos so far have really helped, plus your networking videos from a while back; they helped with my networking module. I know this video isn't getting the views you want, but keep with it, your videos are improving lives Chuck
Great stuff man,no nonsense,positive energy. I just started learning Python and your videos sure help to take some of the anxiety away - much easier when things are ‘simple’, ‘awesome’ and ‘amazing’ rather than terrifyingly complex and overwhelming.
I learned python a couple of years ago, and then didn't use it for two years. This is a great refresher for following along and getting back into the basics.
This is amazing! I haven't coded in years and am basically starting from scratch. Not only have you inspired me to investigate a new career, you're teaching me Python basics too! Coffees or beers are on me lol
Your ways that you teach are soo unique, everything is soo perfectly paced. The way you repeat important steps so it sticks in our heads. Iam someone who is new to python, and I'm picking up concepts faster than i ever imagined. Im truly thankful for what your doing. Your ways of teaching are truly amazing, keep spreading your knowledge through the ways you do best chuck.
print ("Hello welcome to coffee dzi") name = input("what is your name? ") print("Hello " + name + ", this is the menu Mochaccino Iced coffee,Latte macchiato,Café au lait") order = input("What do you want to drink? ") print(name +" Your order is " + order + " and it will be ready in a few moments")
I'M IN LOVE WITH THIS LANGUAGE WHYX DID NO ONE TELL ME IT WAS SO MUCH LESS COMPLICATED THAN JAVA 😭😭😭YOU DON'T EVEN HAVE TO DECLARE THE DATA TYPE!! AND TYSMMM FOR YOUR TUTORIALS THWYRE AMAZING
J Dub 4 months ago I've tried learning Python on and off for a year now and it always gets to a point where it just becomes dry. Kind of to be expected from learning code. But that was the most down to earth way to learn that was also fun. That's a testament to the teacher's ability to teach as much as the teaching method. I'm hooked and can't wait for the next one. Phenomenal job!
Thank you for offering this course. I'm no PC illiterate but learning a language for the first time and your delivery is very welcoming, it makes it feel like my good friend is showing me how to learn Python.
This is one of the best programming courses I have ever seen, this has already taught me so much. And im exited to see what we will do in the next episode.
I love that I'm learning right away! I figured out how to combine those lines. menu = "Black Coffee, Expresso, Latte, Cappuccino, Donuts " order= input(name + ", What would you like from our menu today? Here is what we are serving. " + menu)
Love this lesson series - my answer to the challenge is as follows, and uses f-strings instead on concatenation order = input(f"{name}, what would you like from our menu today? Here is what we are serving {menu} ")
the answer is : order =input ("would you want to order something to eat or drink we've got several tasty specilities, Here's what we are surving today: "+menu) ,,,,,,, you're so cool you're so awesome ,,, you're the one that encourage me to start coding in python ,,, you're cruching it you're spicing it you're the man bro please keep on doing playlist for python's apliocations (AI , data ..... and other coooooooooool stuff) do NOT CHANGE you're perfect !!!!!!!! thank you for such positive vibes every day and for every video :)
I'm a newbie who just started learning today and am already hooked up with the way you teach, which makes it all the more fun for me to learn better and efficiently. Thank you Sir Chuck.
Lol the challenge at 15:29 is how I coded it by myself when you said pause. XD Thank you so much for these videos theyre excellent for beginners like myself!
@@abderrahmankharroubi2784 i did it like this, print("Here is the menu, theres tea and coffea") order = input("What would you like to order? ") print("OK " + name + ", " + order + " will be ready in a moment")
You are the greatest teacher I have ever come across. I love your teaching style. You just make everything easy. I appreciate you so much! Looking forward to watching all of your videos.
order = input(name + ‘, what would you like from our menu today? Here is what we are serving: ’ + menu) I like the menu variable also changed to: menu = ‘Black coffee, Espresso, Latte ’ Great video!
Thank you! I used to use Java all the time… I got inspired to learn python from you! Will you go as far as creating GUI and maybe creating an executable (for linux preferably)?
I watched a few of your videos before I started High School. and now that I have joined a IT based High school, I realize how easy you make it to understand compared to what they teach there. Thank you so much man (Even tho you're probably not reading this, just wanted to let you know)
here is how i did my code print("Hello, welcome to our restaurant") input("what is your name? ") name = "Anis" menu = "pizza, burger, pasta" print("Hi " + name + " what would you like to order, here is what we are serving " + menu) order = input() print("i would like to order some " + order) print("we will have your " + order + " ready in a moment")
i've been coding since I was 8 In 3rd grade when my dad inrolled me into coding classes now i am in middle school and you've taught me the most with only a few videos
It’s strange how people talk about all the profits, they have been making through trading of crypto, while am here making huge losses. Please can someone put me through on the right path or at least advise me on what strategy to follow.
@Chris Sain I’ve been investing in Bitcoin by myself. I’m not really happy with what’s going on, just few weeks ago I lost about $5000 in a particular trade so will getting a professional solve the problem??
A bit late to this but I did this while doing the first challenge . I was stoked that I had already solved the second challenge so I just had to post. print("Hello, welcome to NetworkChuck Coffee") name = input("what is your name? ") print("Hello " + name + ", thank you so much for coming in today.") menu = "Latte Cappuccino Americano " coffee = input("What would you like from the menu today "+ name + "?
" + menu) print("Your " + coffee + " will be ready in 5 minutes.")
I love learning with this channel because, apart from the comedic parts it has, it's gonna teach you something you didn't know! Thanks again man! Quick edit : Impressive! I'm learning programming at a fast pace! I already learned like 4 variables in one day, and I'm just getting started!
Back in school everybody said math was very related to programming and i was studding with a crazy teacher for hours every day making mathematic algorithms i never understood why ppl said it was related to it until now, it seems you're taking me into an automation jurney thanks man
Ik its kinda petty since the tutorial has been 2 years, but I think the last challanges code is sth like this. print("Hey This is Patrick, and welcome to our barista!") name = input("What is your name? ") print("Hello " + (name) + ", Thank you so much for coming in!") menu = "Latte " + "cappuchino " + "Croissant " + "and some Tea!" print(name + ", incase youre not familiar with our card, heres the menu were serving today! " + menu) serving = input("what can I bring you today Sir? ") print("Right away "+ name + ", i will bring the " + serving + " to your table in 5 minutes!") at least thats who i did it
My answer It's simple but correct order = input("We are serving Dosa and pizza. What would you like to order?") print(" ") print("Your " + order + " will be ready in few minutes...")
This guy is elevating minds and bank balances!!! I've been watching his videos and now I LOOOOOVE Python. Coding really can be fun if it's taught well. Thank you for helping me with my career change.
Hi there, I know this is an old video, but here's how I'd combine the print & order variable using fstring: order = input(f"Hi {name}, here's what we serve: {menu} What would you like to order? ") Loving the content, you're the legend Mr Chuck!
import time menu = "Eggs, baked beans, orange juice or toast" print("Hello, welcome to my cafe!") name = input("What is your name? ") print("We have", menu, "What would you like?") order = input() print("Hey", name, "your", order, "will be ready in a few moments.") time.sleep(3)
my first python code thank you name = input("hello, sur what is your name ? ") print("hello,Mr " + name + " thank you for coming!!") menu = ["salade", "pizza", "makloub", "soda"] print ( menu ) print("What would you like to order?") menu_chose = input("Please enter your choice: ") if menu_chose in menu: print("Your " + menu_chose + " will be here in a moment.") else: print("Sorry, we don't have " + menu_chose + ".")
What I use to learn (the BEST IT training): ntck.co/itprotv (30% off FOREVER) *affiliate link
FREE Python Lab: ntck.co/ep2pylab
Test your knowledge!! (quiz): ntck.co/pyquizep2
Support the course: ntck.co/pythonrightnow
🔥🔥Join the NetworkChuck membership: ntck.co/Premium
**Sponsored by ITProTV
1st
Great!
Hi
I was waiting for this episode 2.
Thanks you
thanks for doing this i dindt find any good tutorials that are fun to watch :)
This course is just sooo good.
The calmness in your voice and the relaxing music in the background makes it so easy to focus. Thanks again
Exactly 😭😭
Calmness??? Maybe for a caffeine addict (yes, it _does_ take one to know one..lol.) He does do well at keeping your attention and making things understandable for everyone.
he not calm but he still good
where music? lol
Calm?
Probably the wrong video to comment this on but I cannot thank you enough Chuck for this content. I had no idea about networking until I stumbled upon your videos. I absolutely fell in love and am currently studying for my CCNA and have hopes of deep diving into Python after. I also live in Texas so I’d love to meet you one day and be able to shake your hand for all the work you do for the community. Again…THANK YOU THANK YOU!!!
Chuck always with the dub when competing against my ADHD! Seriously, your production quality & teaching skills make learning these languages so much more captivating. Thank you for everything that you do!!!
Thanks for watching!
Man I 100% relate to this. Chuck is the only content I can stomach before my ADD takes me elsewhere.
BzcbC
I don’t have adhd, but i dont see any coding video as fun and interesting as this one, thanks a lot chuck ❤️
I always have to play chuck at 75% speed. But his content is great. He's a bit fast.
i really don't like programming but with you bro i can learn anything, your style is so motivational better than most of my teachers back at university thanks bro.
THE LEGEND HAS RETURNED YESSSS i waited for this forever!
+1
100% agree! I searched daily for this episode.
@@OctavianTheGr8 me tooooo!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! i had lot of coffee today xd
Nice..
Yeah, me toooo
Two Episodes in and I'm staying engaged, learning and retaining more than on any other platform I've used. Thank you
I've tried learning Python on and off for a year now and it always gets to a point where it just becomes dry. Kind of to be expected from learning code. But that was the most down to earth way to learn that was also fun. That's a testament to the teacher's ability to teach as much as the teaching method.
I'm hooked and can't wait for the next one.
Phenomenal job!
You’ve got a great sense of humor and a gift for teaching. I’m nearly 60 and this is my first endeavor into coding. Glad I found you first! 🎉
To combine the order variable with the print string, you repeat what you did with the name input. You change the print function to an order = input function while keeping the string in the parentheses. And once again I am loving this series as you've done a good job at explaining what is happening and providing opportunities to let us try and solve these ourselves with what's been taught so far. Even if we get it wrong, we can still observe your answer and understand how it works. I even went a little further and took what I learned from your first lesson and applied it to this one by making a multi-line string for the menu so that it appears as a list rather than a sentence, and made use of line breaks to space out the lines when it runs. Looking forward to the next lesson!
Good call, I thought it was something way more complicated. We already know how to do this haha
Thanks man I was wondering how to do that ❤❤❤
if you ask me this series is going to be better than most python course series, he is calm and entertaining while most others are so serious and stiff, the fact that he can entertain us WHILE preparing us for our possible jobs great work bro keep it up! :)
Love Python. Getting more into scripting in Python now after being big on BASH for a long time. Love your videos and keep doing what you do!
Hi
@FC HACKİNG YOU KİDD
@@HaCkEr-- hmm
How to lock the 'menu' and shouldn't use another words... except menu.! How to do it?? Can any one tell me
@Marcin Sulkowski Python can be used for scripting too.
order = input(print("Here's the menu, Take your time to choose and tell me when you've decided.
" + menu))
I personalised it a little bit. Nice series btw, even dough it's from last year it's helping me a lot, thx.
Does it work? I would have said the same as you but without the (print after the input
Happy to see this series continue!
I’m already up to common string methods but I’ll watch whatever Chuck puts out on Python simply because he makes any topic incredibly accessible! Awesome video @NetworkChuck!
Thanks!
@@NetworkChuckhey bro thank you so much I’m on my coding era I’m young yes you have that right I wanna
Learn a language so I can have fun, make a game and show my IT teacher.
solution of the challange
in row 13 instead of print , you just write order = input ( all that stuff) and done you can add and extra "
" if you'd like to have the input in another line (aesthetics)
thanks chuck
Nah doesnt work
@@Lalalalala05-g6z I believe this is one way it could work>>>
order = input("Which coffee would you like? ")
print("Okay, " + name + ". Your " + order + " will be ready in a few moments.")
At least it worked for me.
i know python for almost two years now but still, here I am watching Chuck teach me what I already know
me too lol
Me three
@@scottmallonee lol
I've tried so many Python tutorials, but this is on a whole different level! He just has a way of keeping you glued to the screen even though he only showed a print function and a string. Its crazy!
@@beast6092 not me
15:31
I wrote the code like this, basically wraping up the whole thing
print("Welcome to the coffee shop!")
name = input("what's your name?
")
print("Hi "+ name +", what would you like to order?")
print("We have Americano, Espresso, Latte, Cappuccino and Frappuccino")
coffee = input()
print("Great one " + coffee + " coming right up!")
Challenge answer:
order = input(name + ", what would you like from the menu today? Here is what we are serving.
" + menu + "
")
print("Sounds good " + name + ", we'll get that " + order + " ready in no time")
Then probably do some string checks to make sure we actually get something on the menu lol
I had the same answer too
Long story short, So I can just replace a print command with the name = input command?
@@Cobrax8134 In this case the answer is yes, because you are waiting for an answer that you want to save into a variable.
I didn't even realize it was a 17 mins video, honestly I always click off long videos but tbh, you kept engaged and it was so fun! keep up the good work ❤
This was fun even tho I'm a experienced programmer. You're a great teacher!
aunt may dies in spiderman no way home
@@anstupidguy_bread8884 good to know
@@anstupidguy_bread8884 How Rude
@@tattedbox285 that's in his name
@@tattedbox285 He's not saying may your aunt die he is saying Aunt May (in the movie) dies in spiderman no way home which is so irrelevant.
Those who never paused the video --->😅
Will never gonna remember what he does
Felt that, couldn’t figure out what to do next 😂
Lmao
Me
Bro my speed is at 1.75
Thanks for this series, Chuck! I've started to learn Python a couple of times, but you make it much more accessible than anyone else. Keep up the great work!
My lessons are boring...you tie it all together with your teaching style and make it fun again! I appreciate you!
Love this
Thanks Chuck, doing a master's in computer science,now working on data structures and algorithms
Working on using variables and classes in python, your videos so far have really helped, plus your networking videos from a while back; they helped with my networking module.
I know this video isn't getting the views you want, but keep with it, your videos are improving lives Chuck
Great stuff man,no nonsense,positive energy. I just started learning Python and your videos sure help to take some of the anxiety away - much easier when things are ‘simple’, ‘awesome’ and ‘amazing’ rather than terrifyingly complex and overwhelming.
I am making mine more realistic. "What is your name?" "Bob, I would like a coffee", "ok, here is your hot chocolate Blorg"
Lol wasn’t expecting that blorg there
HAHAHHAHAHAHHAHHAHHA
I learned python a couple of years ago, and then didn't use it for two years. This is a great refresher for following along and getting back into the basics.
This is amazing! I haven't coded in years and am basically starting from scratch. Not only have you inspired me to investigate a new career, you're teaching me Python basics too! Coffees or beers are on me lol
Your ways that you teach are soo unique, everything is soo perfectly paced. The way you repeat important steps so it sticks in our heads.
Iam someone who is new to python, and I'm picking up concepts faster than i ever imagined.
Im truly thankful for what your doing. Your ways of teaching are truly amazing, keep spreading your knowledge through the ways you do best chuck.
Love this series! I’ve been waiting! Can’t wait for the next episode! Enjoy your travels with your family!
OHHH MY GOOOOOD THIS IS THE BEST CODING SERIES I EVER FOUND THANNNNKKKKK YOUUUUUUUU SO MUUUUUUCHHH
I am beyond grateful for these labs and videos. Your enthusiasm and passion for your work really shows and it’s really awesome to witness
As someone who is super new to programming I do find this super cool. You are an excellent teacher, and you are making things so simple to understand.
print("You ignited my motivation and made me excited to learn more about Python! Thank you!")
print ("Hello welcome to coffee dzi")
name = input("what is your name?
")
print("Hello " + name + ", this is the menu Mochaccino Iced coffee,Latte macchiato,Café au lait")
order = input("What do you want to drink?
")
print(name +" Your order is " + order + " and it will be ready in a few moments")
Thank you for this video!
I’ll definitely be playing with this all week
Can’t wait till episode 3
I'M IN LOVE WITH THIS LANGUAGE WHYX DID NO ONE TELL ME IT WAS SO MUCH LESS COMPLICATED THAN JAVA 😭😭😭YOU DON'T EVEN HAVE TO DECLARE THE DATA TYPE!! AND TYSMMM FOR YOUR TUTORIALS THWYRE AMAZING
im really excited for full course. keep it up man ..you rockkkk
J Dub
4 months ago
I've tried learning Python on and off for a year now and it always gets to a point where it just becomes dry. Kind of to be expected from learning code. But that was the most down to earth way to learn that was also fun. That's a testament to the teacher's ability to teach as much as the teaching method.
I'm hooked and can't wait for the next one.
Phenomenal job!
This is amazing! I need these episodes more frequently! 🙏🏽
Thank you for offering this course. I'm no PC illiterate but learning a language for the first time and your delivery is very welcoming, it makes it feel like my good friend is showing me how to learn Python.
This is one of the best programming courses I have ever seen, this has already taught me so much. And im exited to see what we will do in the next episode.
I love that I'm learning right away! I figured out how to combine those lines.
menu = "Black Coffee, Expresso, Latte, Cappuccino, Donuts
"
order= input(name + ", What would you like from our menu today? Here is what we are serving.
" + menu)
I’m a newbie in python i love how you teach thanks and keep it up🙌 simple and well explained
Yes we are learning :)
Love this lesson series - my answer to the challenge is as follows, and uses f-strings instead on concatenation
order = input(f"{name}, what would you like from our menu today? Here is what we are serving
{menu}
")
Beratna, you're only the few I have seen here mention f-strings 👌
This is the exact course I need by my favorite teacher and RUclipsr!
This is the first course that has actually taught me anything about code that I could understand thank you for this helpful guide
The waiting is finally over thank you sir, A wonderful session
This is incredibly the Easiest way I’ve ever seen to learn Python!!!
Thank You Chuck 🙏
Hey Chuck, thanks for all the effort you put in to your content it really makes leaning this stuff much easier and enjoyable 😊
Beautiful, can't wait for more lessons literally waiting for days
the answer is : order =input ("would you want to order something to eat or drink we've got several tasty specilities, Here's what we are surving today:
"+menu) ,,,,,,, you're so cool you're so awesome ,,, you're the one that encourage me to start coding in python ,,, you're cruching it you're spicing it you're the man bro please keep on doing playlist for python's apliocations (AI , data ..... and other coooooooooool stuff) do NOT CHANGE you're perfect !!!!!!!! thank you for such positive vibes every day and for every video :)
Loving this series. Thank you for sharing your knowledge.
Very excited for next episode
The love you have for networking, programming, computers in general 😂😂😂 that is exactly why I’m here for as a cyber lover. You are the 🐐
Omg 🔥🔥 you literally made a video just after your followers requested 😂😂 You the Best ❤️👍🏼
I'm a newbie who just started learning today and am already hooked up with the way you teach, which makes it all the more fun for me to learn better and efficiently. Thank you Sir Chuck.
Lol the challenge at 15:29 is how I coded it by myself when you said pause. XD Thank you so much for these videos theyre excellent for beginners like myself!
me too bud
how did u get it
@@Stadiyana18 I did it like this: print("Your " + input("What would you like to eat?
Here is our menu:
" + menu) + " will be ready soon")
care to elaborate
@@abderrahmankharroubi2784 i did it like this,
print("Here is the menu, theres tea and coffea")
order = input("What would you like to order?
")
print("OK " + name + ", " + order + " will be ready in a moment")
You are the greatest teacher I have ever come across. I love your teaching style. You just make everything easy. I appreciate you so much! Looking forward to watching all of your videos.
eagerly waiting for the second episode......Thanks Chuck for starting this series...
order = input(name + ‘, what would you like from our menu today? Here is what we are serving:
’ + menu)
I like the menu variable also changed to:
menu = ‘Black coffee, Espresso, Latte
’
Great video!
Thank you! I used to use Java all the time… I got inspired to learn python from you! Will you go as far as creating GUI and maybe creating an executable (for linux preferably)?
I watched a few of your videos before I started High School. and now that I have joined a IT based High school, I realize how easy you make it to understand compared to what they teach there. Thank you so much man (Even tho you're probably not reading this, just wanted to let you know)
Dang I'm much addicted to coffee now lol , I can't even watch your videos without making myself one. Keep up the great work! Love from Pakistan 🇵🇰❤️
here is how i did my code
print("Hello, welcome to our restaurant")
input("what is your name?
")
name = "Anis"
menu = "pizza, burger, pasta"
print("Hi " + name + " what would you like to order, here is what we are serving
" + menu)
order = input()
print("i would like to order some " + order)
print("we will have your " + order + " ready in a moment")
And yes, I string with quotes, all day long! 😆
i've been coding since I was 8 In 3rd grade when my dad inrolled me into coding classes now i am in middle school and you've taught me the most with only a few videos
It’s strange how people talk about all the profits, they have been making through trading of crypto, while am here making huge losses. Please can someone put me through on the right path or at least advise me on what strategy to follow.
@Chris Sain I’ve been investing in Bitcoin by myself. I’m not really happy with what’s going on, just few weeks ago I lost about $5000 in a particular trade so will getting a professional solve the problem??
@Chris Sain if you’ve got any, please share
@Chris Sain That’s really impressive, is there a way I could reach out to this trader?
I just texted her on whats app and I'm about to start my trading process wish me luck ☺️
Greetings from Australia🇦🇺. I'm so happy taking a bold step investing $8,000 with Mrs Bones and got my payout last Monday.
Can't Explain how beautifully he teaches. Never saw a person like this before!!!!!!!!!!!!!!!1
print("youre a weapon " + "and a great teacher")
youre a weapon and a great teacher
A bit late to this but I did this while doing the first challenge . I was stoked that I had already solved the second challenge so I just had to post.
print("Hello, welcome to NetworkChuck Coffee")
name = input("what is your name?
")
print("Hello " + name + ", thank you so much for coming in today.")
menu = "Latte
Cappuccino
Americano
"
coffee = input("What would you like from the menu today "+ name + "?
" + menu)
print("Your " + coffee + " will be ready in 5 minutes.")
the way you explain things just blends really well with me. Love your videos.
I love this guy, he is so happy, he definitely makes it easier to learn and pay attention.
I've tried so many different course on this, never been able to get it down or understand, thank you so much for this! I got the concept down finally
The way you are so enthusiastic helps ME get interested
Love your way of teaching, complete newbie here and learning very slowly but definitely learning.
I'm learning python by my self, your videos are the best... Thanks so much..... great channel your the best...
I love learning with this channel because, apart from the comedic parts it has, it's gonna teach you something you didn't know! Thanks again man!
Quick edit : Impressive! I'm learning programming at a fast pace! I already learned like 4 variables in one day, and I'm just getting started!
This is so easy man. I've never seen a very good teacher like you...
You are very, very talented teacher.
I love bro's hyper activeness! It makes me even more excited for his vids! Great vids, Man! Keep it up!
I wish all teachers were this enthusiastic and entertaining. Thanks!
Back in school everybody said math was very related to programming and i was studding with a crazy teacher for hours every day making mathematic algorithms i never understood why ppl said it was related to it until now, it seems you're taking me into an automation jurney thanks man
11:04 an easier way of doing that is
name = input(“hello, what’s your name?”)
Print(“hello %s” % name)
Ik its kinda petty since the tutorial has been 2 years, but I think the last challanges code is sth like this.
print("Hey This is Patrick, and welcome to our barista!")
name = input("What is your name?
")
print("Hello " + (name) + ", Thank you so much for coming in!")
menu = "Latte
" + "cappuchino
" + "Croissant
" + "and some Tea!"
print(name + ", incase youre not familiar with our card, heres the menu were serving today!
" + menu)
serving = input("what can I bring you today Sir?
")
print("Right away "+ name + ", i will bring the " + serving + " to your table in 5 minutes!")
at least thats who i did it
My answer
It's simple but correct
order = input("We are serving Dosa and pizza. What would you like to order?")
print("
")
print("Your " + order + " will be ready in few minutes...")
easily the best IT learning vids on the tube
omg i can't- this course is just so good it's a huge different between you and the other youtube videos ... just THANK YOU
Your demeanor, voice, and beard make this a true AAA+++++ tutorial. Thank you, sir!!
This guy is elevating minds and bank balances!!! I've been watching his videos and now I LOOOOOVE Python. Coding really can be fun if it's taught well. Thank you for helping me with my career change.
Dude! You are by far the best one so far when comes to teach python. Amazing energy thank you.
Love your engaging personality and teaching style!
Didn't say 'string' in quote marks, but then I didn't have anyone to talk about coding with. Just plain h2o today. Loving the content Chuck
you have been a huge help in getting me started into the coding world
as an older guy trying to learn new things its a huge help!
I feel so excited when I pause the video do it on my own and IT WORKS!
He's the best teacher i swear
Hi there, I know this is an old video, but here's how I'd combine the print & order variable using fstring:
order = input(f"Hi {name}, here's what we serve:
{menu}
What would you like to order?
")
Loving the content, you're the legend Mr Chuck!
Nice! F-strings are the best! Concatenating requires extra work on converting nonstrings into strings and it's so old like 1999!
Remember the North!
import time
menu = "Eggs, baked beans, orange juice or toast"
print("Hello, welcome to my cafe!")
name = input("What is your name?
")
print("We have", menu, "What would you like?")
order = input()
print("Hey", name, "your", order, "will be ready in a few moments.")
time.sleep(3)
my first python code thank you
name = input("hello, sur what is your name ?
")
print("hello,Mr " + name + " thank you for coming!!")
menu = ["salade", "pizza", "makloub", "soda"]
print ( menu )
print("What would you like to order?")
menu_chose = input("Please enter your choice:
")
if menu_chose in menu:
print("Your " + menu_chose + " will be here in a moment.")
else:
print("Sorry, we don't have " + menu_chose + ".")
Thank you Chuck really appreciate your work alot!!!! I am just 12y old and i am already made 1000 of bakeries and coffee shops...
I combined row 13 by adding a semicolon between the 2 respective statements. Thank you for the series, Chuck!