Python variables ✘

preview_player
Показать описание
Python variables tutorial example explained

#python #variables #tutorial

#variable = a container for a value. Behaves as the value that it contains

#string = a series of characters
first_name = "Bro"
last_name = "Code"
full_name = first_name +" "+ last_name
print("Hello "+full_name)
# print(type(first_name))

#int = a whole integer
age = 21
age += 1
print("Your age is: "+str(age))
# print(type(age))

#float = a decimal number
height = 250.5
print("Your height is: "+str(height)+"cm")
# print(type(height))

#boolean = True or False
human = True
print("Are you a human: "+str(human))
# print(type(human))

––––––––––––––––––––––––––––––
Creative Commons — Attribution-ShareAlike 3.0 Unported— CC BY-SA 3.0
––––––––––––––––––––––––––––––
Рекомендации по теме
Комментарии
Автор

#variable = a container for a value. Behaves as the value that it contains

#string = a series of characters
first_name = "Bro"
last_name = "Code"
full_name = first_name +" "+ last_name
print("Hello "+full_name)
# print(type(first_name))

#int = a whole integer
age = 21
age += 1
print("Your age is: "+str(age))
# print(type(age))

#float = a decimal number
height = 250.5
print("Your height is: "+str(height)+"cm")
# print(type(height))

#boolean = True or False
human = True
print("Are you a human: "+str(human))
# print(type(human))

BroCodez
Автор

Really a great tutorial, its so easy to understand the basics.

sagarmunde
Автор

Your way of explaining things is really great... Thank You...

sidhunaren
Автор

thanks a bunch for putting this all together!! love the playlist making it more helpful!!

ExpandYourEmpire
Автор

instead of doing
print("hello "+name)
do this
print("hello", name)
no need to give space after hello, just replace + with, and you're good to go.
correct me if I am wrong

youtubevid
Автор

Your way of explaining things is really great

sisoniykvitaliy
Автор

Tip: In boolean true and fals must be spelled with the first letter in caps ( True, False)

asifaa
Автор

You simplified it in a great way! thanks!

lilachfr
Автор

Bro Why Haven't I Seen This Channel Before It's A Great Channel

Gojokun
Автор

thanks, your tutorial is very useful to understand

ma.soishob
Автор

This is my comment in order to keep this channel running 👍

Maharddhika
Автор

After learn your 8 hours JS tutorial to the 3 hours,I became a fellow!

David-mjst
Автор

Thanks bro u helped for my exam thank you so much

FootballWorld-lgmu
Автор

Hello Bro Code, I'm messaging not actually to purchase anything but to let you know that I enjoy learning from you. I wish you can mentor me to be a programmer just like you Bro. I have been trying to reach you from all the comments section in your YouTube videos. Please reply as you like a special gift from God to help me in programming. I have spend like 6 months trying to find a tutor that can help me be a programmer until I accidentally found you. Thanks man for every videos out there on YouTube. Once again thank you very much for your efforts and resources. Love from Sierra Leone, West Africa.

farahdoekoroma