Python variables ✘

  Рет қаралды 65,706

Bro Code

Bro Code

Күн бұрын

Пікірлер: 127
@BroCodez
@BroCodez 4 жыл бұрын
#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))
@thorcoder1
@thorcoder1 3 жыл бұрын
super
@salamsalamov8619
@salamsalamov8619 2 жыл бұрын
Oh no i cant copy it
@puneetcricket8486
@puneetcricket8486 Жыл бұрын
I am not sure if lists are considered a python variable type. I am new to python so...
@youtubevid5330
@youtubevid5330 3 жыл бұрын
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
@benszou5449
@benszou5449 3 жыл бұрын
it's right
@piko_sama7350
@piko_sama7350 3 жыл бұрын
name = "Piko" print(f"Hello {name}")
@mongoliandeathworm406
@mongoliandeathworm406 3 жыл бұрын
I could be wrong but I think doing print("hello",name) takes up an extra argument as opposed to print("hello"+name)
@SekiberiusWelkesh
@SekiberiusWelkesh 2 жыл бұрын
You could also do print("Hello "+(first_name)+" "+last_name)
@asifaa5343
@asifaa5343 3 жыл бұрын
Tip: In boolean true and fals must be spelled with the first letter in caps ( True , False)
@Artyon
@Artyon 2 жыл бұрын
thank you
@carmel7411
@carmel7411 4 жыл бұрын
Love u bro u very good KZbinr
@Gojokun00
@Gojokun00 2 жыл бұрын
Bro Why Haven't I Seen This Channel Before It's A Great Channel
@sagarmunde5299
@sagarmunde5299 3 жыл бұрын
Really a great tutorial, its so easy to understand the basics.
@sidhunaren
@sidhunaren 3 жыл бұрын
Your way of explaining things is really great... Thank You...
@Icysh-k2e
@Icysh-k2e 2 жыл бұрын
sucha a great content 👌🏼
@hanuta22
@hanuta22 Жыл бұрын
Thanks for explaining
@samimerk5313
@samimerk5313 2 жыл бұрын
thank you for the explanaion
@lisahoegler5870
@lisahoegler5870 4 жыл бұрын
Great video
@samanthaossuetta3739
@samanthaossuetta3739 2 жыл бұрын
very nice!!
@Maharddhika
@Maharddhika 2 жыл бұрын
This is my comment in order to keep this channel running 👍
@balasubramanisivakumar1089
@balasubramanisivakumar1089 2 жыл бұрын
you are really bro for us
@aryaman4068
@aryaman4068 2 жыл бұрын
Best python videos on KZbin so far
@praveenakumarapy4914
@praveenakumarapy4914 2 жыл бұрын
iohronpn rb4or4 rn44ri7bqob4 bo49yn4t 44typ4nt4t t4bpyh4t p4n48ytnpy tnpbo7ton nrpo89n5 'nt ntup5 ntmunupr tgmutntuot tnpt
@its_m3os
@its_m3os 2 жыл бұрын
tnx for this video ❤
@Darkownercute
@Darkownercute 2 жыл бұрын
You are very underrated keep going
@ХристоБорисов-ф1о
@ХристоБорисов-ф1о 2 жыл бұрын
Thanks for learning me Python.
@sisoniykvitaliy7172
@sisoniykvitaliy7172 3 жыл бұрын
Your way of explaining things is really great
@kimcris5801
@kimcris5801 Жыл бұрын
Easy to understand
@wendypandawa2636
@wendypandawa2636 2 жыл бұрын
Thank you for sharing!
@lilachfr
@lilachfr 2 жыл бұрын
You simplified it in a great way! thanks!
@reda29100
@reda29100 Жыл бұрын
1:30 in addition to single and double quote delimiters ('text' and "text"), you may use triple single and double quotes as well: '''text''' and """text""". A thing these two delimiters have that single-character delimiters don't have is, they retain lines within the string, unlike the first, where putting those in different lines: my_text = 'text' 'in a new line' is converted by Python to simply concatenated strings: 'textin a new line', while: my_text = '''text in a new line''' stores the string, which when printed looks like: text in a new line Of course, you can always create a string of joined strings separated by a string (new line character in this case): "first" + " second", or " ".join(["first", "second", "any other string", ...] where it would concatenate the strings inside the list, putting the object in between (a string of " ", i.e., a new line in this case), but that feature is of convenience more than anything.
@ExpandYourEmpire
@ExpandYourEmpire 3 жыл бұрын
thanks a bunch for putting this all together!! love the playlist making it more helpful!!
@Impgem69
@Impgem69 2 жыл бұрын
Thank You Bro!
@ayoubsmahi984
@ayoubsmahi984 3 жыл бұрын
Thank you very much.
@ma.soishob9961
@ma.soishob9961 3 жыл бұрын
thanks,your tutorial is very useful to understand
@Lalalalaaaa77
@Lalalalaaaa77 2 жыл бұрын
🙌🙌
@WilliamsEmp
@WilliamsEmp 2 жыл бұрын
I tried this; First_Name = input("What is your first name? ") Last_Name = input("What is your last name? ") print("Hello", First_Name +" "+ Last_Name) age = input("How old are you " + First_Name + "? ") print("You are " + str(age) + " years old") height = input("What is your height in cm? ") print("Your height is " + str(height) + "cm")
@prasitsingh6713
@prasitsingh6713 2 жыл бұрын
Why do you need to type str?
@voibuicochauphitruongthanh14
@voibuicochauphitruongthanh14 2 жыл бұрын
@@prasitsingh6713 because it was an integer and integer can't go with strings
@aries698
@aries698 10 ай бұрын
The way you explain that you are a human is like what AI would do.
@sayedhusson3876
@sayedhusson3876 4 жыл бұрын
Cheers man, great tutorial
@yiorgoskatopodis
@yiorgoskatopodis 2 жыл бұрын
Excellent!
@spartanranger
@spartanranger 3 жыл бұрын
Thanks for guides!
@chinemeremopara2712
@chinemeremopara2712 2 жыл бұрын
I learnt a lot tonight. Thanks a lot
@FootballWorld-lg4mu
@FootballWorld-lg4mu Жыл бұрын
Thanks bro u helped for my exam thank you so much
@Animal_Fact_Frenzy
@Animal_Fact_Frenzy 2 жыл бұрын
Thank you very much
@elvinjong6074
@elvinjong6074 2 жыл бұрын
so good
@vassiliosbantourakis3532
@vassiliosbantourakis3532 2 жыл бұрын
Awesome!
@SantS5150
@SantS5150 Жыл бұрын
nice!
@poleznoykanal8217
@poleznoykanal8217 3 жыл бұрын
Very good lesson !
@David-mj9st
@David-mj9st 2 жыл бұрын
After learn your 8 hours JS tutorial to the 3 hours,I became a fellow!
@gianhat7323
@gianhat7323 2 жыл бұрын
Nice
@ElectricAvenue123
@ElectricAvenue123 4 жыл бұрын
Thanks
@anuragbandhubajpai
@anuragbandhubajpai 3 жыл бұрын
I like python it's easy
@dohuy.felix123
@dohuy.felix123 3 жыл бұрын
Not good at English but can study well thanks your best teaching
@praveenakumarapy4914
@praveenakumarapy4914 2 жыл бұрын
f inh8gngnr rrnorg grnorngr rnu0grnrrnur0norrnror rpngr rnuprr upg rrnup rrnogruo eno
@applefactory3139
@applefactory3139 2 жыл бұрын
nice
@knightwolf900
@knightwolf900 2 жыл бұрын
print("your the best bro")
@corydoyle1019
@corydoyle1019 3 жыл бұрын
Thanks for the help!
@farahdoekoroma159
@farahdoekoroma159 3 жыл бұрын
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 KZbin 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 KZbin. Once again thank you very much for your efforts and resources. Love from Sierra Leone, West Africa.
@Zakharov22
@Zakharov22 2 жыл бұрын
Thanks, Bro
@pramodkoushiktr1895
@pramodkoushiktr1895 4 жыл бұрын
r u professor of some university? u teach really good. from which country r u?
@praveenakumarapy4914
@praveenakumarapy4914 2 жыл бұрын
djbcjbebe behbe bue e
@shudgununivers7425
@shudgununivers7425 Жыл бұрын
Thank you pro
@tetsuyakuroko8656
@tetsuyakuroko8656 3 жыл бұрын
Thanks bro
@dorakake7484
@dorakake7484 3 жыл бұрын
Thank You 😊
@ritwikvajpeyi4610
@ritwikvajpeyi4610 2 жыл бұрын
thnx it helps a lot
@dominicshib3276
@dominicshib3276 3 жыл бұрын
thanks for providing the code
@ahmedelsapagh15
@ahmedelsapagh15 3 жыл бұрын
great tutorial
@fucodl138
@fucodl138 2 жыл бұрын
Thanks.
@davehug
@davehug 3 жыл бұрын
Are you a human: Doubt! Thanks for the video AI bro
@TheWaffleMan69
@TheWaffleMan69 3 жыл бұрын
lol
@JorgeOcampoIQ
@JorgeOcampoIQ 2 жыл бұрын
What book do you recommend me to deep more on each topics?
@alolabang
@alolabang 3 жыл бұрын
So amazing
@nagasolo4618
@nagasolo4618 3 жыл бұрын
Super
@thorcoder1
@thorcoder1 3 жыл бұрын
sir you are op
@JustaFrog1241
@JustaFrog1241 2 жыл бұрын
Thank you
@praveenakumarapy4914
@praveenakumarapy4914 2 жыл бұрын
dwjbkw dbbd'wnudbi vqikb woq qnw wgbd d odn o 93 yhdt9889e y9 9y83o jowodnwpdq w u0q
@CraftYoutube
@CraftYoutube 3 жыл бұрын
awesome!!!!!
@callumbartlett1861
@callumbartlett1861 2 жыл бұрын
thanks mate
@devarunkarmakar6298
@devarunkarmakar6298 2 жыл бұрын
you are the best each and every fukin concpt is clear brooooooooooooooo
@geraldocangondo7264
@geraldocangondo7264 3 жыл бұрын
Is good
@syah132
@syah132 3 жыл бұрын
Thanks bri
@Spacious_GG
@Spacious_GG 3 жыл бұрын
9:29 , now we know how tall Bro Code is
@airlanggak5391
@airlanggak5391 3 жыл бұрын
thanks!
@budderrar5751
@budderrar5751 2 жыл бұрын
noice
@rabiaabubakarabdulaziz5194
@rabiaabubakarabdulaziz5194 2 жыл бұрын
Hi Bro Code, what code editor do you use???🤔 i really want to know.
@AnxiousFrenchFries
@AnxiousFrenchFries 2 жыл бұрын
PyCharm
@_sf_editz1870
@_sf_editz1870 2 жыл бұрын
😄😄
@business9854
@business9854 3 жыл бұрын
Commenting just so that this video bursts, hopefully
@maboulmaaly
@maboulmaaly 3 жыл бұрын
thanks
@masoudargoshi4312
@masoudargoshi4312 2 жыл бұрын
habibi
@TehArcy
@TehArcy 3 жыл бұрын
hm even though I put true is still says false when I ask if I'm human O.o??? spooky
@tarikyassa1076
@tarikyassa1076 3 жыл бұрын
👍
@fadorn7
@fadorn7 2 жыл бұрын
please bro code tell me is there any extensions for chrome to run python codes or an extension which has terminal?
@marxmarx5058
@marxmarx5058 3 жыл бұрын
Bro is a legend
@tatsumiogahulkbooster8287
@tatsumiogahulkbooster8287 2 жыл бұрын
I guess that the new patch may have ****ed up everything. I can't do the run thing unless I force it with run... If u know what I mean "bro"
@brondani_
@brondani_ 3 жыл бұрын
finally i feel like i learned something, thank you :D
@praveenakumarapy4914
@praveenakumarapy4914 2 жыл бұрын
tgha x
@stuartYoung559
@stuartYoung559 3 жыл бұрын
If you was a girl, indeed i swear must have proposed you.😂.. thanks thanks thanks alot brother .. ❤❤❤❤❤❤
@Sir_Aramaki
@Sir_Aramaki 2 жыл бұрын
IK you are giga chad and you are probably taller then 90% of us but 250 cm is not normal. 8:04. lol but seriously great video
@patrickbanzon7145
@patrickbanzon7145 2 жыл бұрын
23/JUL/22 7:43pm i was here
@notdumb3182
@notdumb3182 3 жыл бұрын
HELLO BRO
@omriu5000
@omriu5000 2 жыл бұрын
I tried to pull off a huge variable and see if I can get it done, which I did !! print("My height is " +str (height)) +print("Oh then I'm taller than you ")
@Dorelff
@Dorelff 2 жыл бұрын
@chzzh6634
@chzzh6634 2 жыл бұрын
print("Thank you Bro ")
@user-sh5zv4yf5s
@user-sh5zv4yf5s 3 жыл бұрын
Thank you for your support
@mohammadbahaaalissa5213
@mohammadbahaaalissa5213 2 ай бұрын
3
@ginunggagap
@ginunggagap 2 жыл бұрын
Perfectly normal height.. 250.5 cm... I reckon im just too abnormally small at 170
@Phr8
@Phr8 3 жыл бұрын
print("down below")
@knm185
@knm185 Жыл бұрын
age = 4 print("your age is", age) your age is 4
@YeahEsCereal
@YeahEsCereal 2 жыл бұрын
Hi
@cristianwilder3633
@cristianwilder3633 2 жыл бұрын
the right yk haha
@lukaaa3375
@lukaaa3375 2 жыл бұрын
perfect speed 1.25
@user-sh5zv4yf5s
@user-sh5zv4yf5s 3 жыл бұрын
should we do with you
@ChaitanyaChoraria
@ChaitanyaChoraria 3 жыл бұрын
please use ,
Python lists, sets, and tuples explained 🍍
15:06
Bro Code
Рет қаралды 333 М.
Python variables for beginners ❎
13:31
Bro Code
Рет қаралды 202 М.
Tuna 🍣 ​⁠@patrickzeinali ​⁠@ChefRush
00:48
albert_cancook
Рет қаралды 145 МЛН
To Brawl AND BEYOND!
00:51
Brawl Stars
Рет қаралды 17 МЛН
We Attempted The Impossible 😱
00:54
Topper Guild
Рет қаралды 56 МЛН
Why You Shouldn't Use the Global Keyword in Python
17:59
Tech With Tim
Рет қаралды 48 М.
Variables in Java ✘【12 minutes】
12:32
Bro Code
Рет қаралды 227 М.
5 Good Python Habits
17:35
Indently
Рет қаралды 658 М.
10 Important Python Concepts In 20 Minutes
18:49
Indently
Рет қаралды 372 М.
User input in Python is easy + exercises ⌨️
13:04
Bro Code
Рет қаралды 116 М.
Data Types in Python | Python for Beginners
21:58
Alex The Analyst
Рет қаралды 132 М.
Python string slicing ✂️
11:37
Bro Code
Рет қаралды 65 М.
How To Write Better Functions In Python
14:17
Indently
Рет қаралды 53 М.
Functions in Python are easy 📞
10:38
Bro Code
Рет қаралды 600 М.
5 Python Libraries You Should Know in 2025!
22:30
Keith Galli
Рет қаралды 65 М.
This feature of Huawei is really useful. It is 100% original
0:11
TECH CRAZY CRANE
Рет қаралды 11 МЛН
WOW 😱 How to Make AirPods from Regular Headphones
0:47
ALABAYCHIC
Рет қаралды 19 МЛН
Organize Your Home With These Must-Have Smart Gadgets #shorts  Pt-2
0:22
СДЕЛАЙ ТАК . Пульт будет работать вечно
9:39
Мужские интересы 79
Рет қаралды 602 М.
iPhone SE 2020 пролежал в коробке 4 года
0:54
ТЕХНОБЛОГ ГУБАРЕВ СЕРГЕЙ
Рет қаралды 3,4 МЛН