Variables & Data Types | Python | Tutorial 5

preview_player
Показать описание

Throughout the course we'll be looking at various topics including variables, lists, tuples, loops, conditionals, object orientation, and much more.
Рекомендации по теме
Комментарии
Автор

This is just what I needed. Very straightforward and easy to understand. Thank you!

brittneyhoffman
Автор

Bro, I wanna thank you so much for the Python Course. it's the best by far than any other available course even the paid ones. I would appreciate it if you can take us to the next level and make an intermediate to advance python course.

hwakeb
Автор

I thought some other programming bad guy was the 🐐! Until I met Mike!! Keep doing your thing bro, the world will soon recognize!! So easy to grasp like it's noodles... remain blessed!

davidstanks
Автор

this is called teaching / thank you so much

deepthagayanwelagedara
Автор

Your videos really stand out from the rest, thanks man.

lindelamhlanga
Автор

Very thanks mike, you're the one of my best teachers.

waiphyokyaw
Автор

no no no! your my first coding teacher also the best in first attempt! coool.
please make a video on making an app using python

STAR-grue
Автор

When I changed the character_age = “50” to 50 (i.e. from string to integer) and run the script it showed error? Please explain, thanks.

DanielDuedu
Автор

In school they told us we can seperate variables in print with a, print("this is", how, "we do it") how being the variable

Chironexe
Автор

thank u (a lot) 4 this vids, very very helpful

HpeAll
Автор

Why do i error out with the following message when I use a number in place of the 25.

from the following code?

NVM found out that the video did not show that i would need to add str() around the number 50 to get it to work
age_test = 50
print("This is his age " + age_test + ". " )

this works
print("This is his age " + str (age_test) + ". " )

this is the error

print("This is his age " + age_test + ". " )
TypeError: can only concatenate str (not "int") to str

Process finished with exit code 1

webafile
Автор

Nice one mate. Out of curiosity: Why do you suggest using underscores in python instead of camelcase?

misterwonka
Автор

Hey, I know I am late to the party regarding this video here, but following other guides I noticed they don't use the + signs before and after text. Is this due to a newer version of Python, or am I missing something?

firestorm
Автор

Doing great bro lovin" it + loving_it +")

NandanoBlackett
Автор

10:00 when I remove the quotation marks, doesn't run the code

reencuentro
Автор

Hey Mike, I know I'm late but I have huge doubt in this video. Where can I ask?

kirtisharma
Автор

Hi !
So i wrote a story just for fun.

But in my story there are 2 names. how can i edit both of them?

big_brother_name = Harry
little_brother_name = James

print("Harry and James are brothers"


so how can i fix this ? or lets swap it a little so its more alike what you see in the video.

print("Two very good brothers " + big_brother_name #and here what to add ? + little_brother_name )

zsoltiesan
Автор

python3 print function cannot directly concatenate int, double, bool and str. You must put inside print with another functions like format. print("my 1st parameter is {}.".format(firstparam))

vanmemet
Автор

With this I just a get an error message saying syntaxerror: keyword can't be an expression

bambam
Автор

I'm in an Intro to Gaming class for my college and it's all online and the teacher is absolutely useless. 
I didn't know that I was supposed to create a new window instead of coding in the shell, and his instructions after I said it wouldn't run properly was, and I quote, "if you read chapters 1-3, you would know you're supposed to do run it in a code window. Not the shell."
This 12 minute video is literally more understanding than the 5 weeks of "learning" I've been doing in this class.

ATD-uclb