Python user input ⌨️

แชร์
ฝัง
  • เผยแพร่เมื่อ 29 ธ.ค. 2024

ความคิดเห็น • 259

  • @BroCodez
    @BroCodez  4 ปีที่แล้ว +133

    name = input("What is your name?: ")
    age = int(input("How old are you?: "))
    height = float(input("How tall are you?: "))
    print("Hello "+name)
    print("You are "+str(age)+" years old")
    print("You are "+str(height)+"cm tall")

    • @crisp6875
      @crisp6875 3 ปีที่แล้ว +2

      Bro i didn't need to type (int/float and print str)but when typed age and height it was correct means there was no error!

    • @kalaiarts1549
      @kalaiarts1549 2 ปีที่แล้ว +1

      mail =str(input ("enter your mail id"))
      print("your mail id is " + mail)
      print(type(mail))
      Erode code

    • @n0on51
      @n0on51 ปีที่แล้ว

      whats should i do if user types string in intiger input pls help bro!

    • @dkdinesh2656
      @dkdinesh2656 ปีที่แล้ว +1

      #take the user's name as input
      name = input("Enter your name: ")
      print(name)
      #the vaiable that includes the welcome message is alredy provided.
      #Please complete this part using the knowledge obtained in this lesson.
      greeting =
      #print the welcome message
      print(greeting) Please help to solve this problem

    • @agbesidaniel2850
      @agbesidaniel2850 ปีที่แล้ว

      Good lecture ❤

  • @jakestallone2212
    @jakestallone2212 ปีที่แล้ว +52

    I'm taking a python course and input function was briefly explained at this point. I tried coding it myself and was getting a syntax error. You solved my problem. Thank you!

    • @MJE536
      @MJE536 ปีที่แล้ว +1

      Best video for beginners

  • @laurenceseberini6241
    @laurenceseberini6241 2 ปีที่แล้ว +26

    It is unbelievably easy to follow this series - time goes quick and the way he teaches is top notch

  • @realskater54211
    @realskater54211 ปีที่แล้ว +5

    Thanks for the in depth video explaining casting for different data type. I am new to Python and this video helped me understand the basics very quickly. Great explanation.

  • @ASHUTOSH-mu7cs
    @ASHUTOSH-mu7cs 2 ปีที่แล้ว +5

    brocode=("thanku")
    >>> print(brocode)
    thanku

  • @AmogelangMoenyane
    @AmogelangMoenyane ปีที่แล้ว

    Thanks bro your vids are the best they really helped me a lot in last minutes. I'm writing a test now at 2:00 and I wasn't really that focused during my lectures, I just discovered you now and you really helped, THANK YOU!!

  • @TehArcy
    @TehArcy 3 ปีที่แล้ว +6

    made a calculator to calc volume of a cube type object; pretty cool thanks for the tutorials

    • @BroCodez
      @BroCodez  3 ปีที่แล้ว +2

      You're welcome! Thanks for watching!

  • @wrightworld4556
    @wrightworld4556 11 หลายเดือนก่อน

    Your explanations are the clearest I've seen. Thank you, Bro.

  • @Satoshi096
    @Satoshi096 ปีที่แล้ว

    - Write a loop that asks the user to input an integer between
    10 and 60. If they enter something that is not an integer in that range, ask them again, giving an error message to remind them. Once they enter an integer, create a loop that keeps dividing the number by two, taking its integer value, and printing the result until it reaches zero.
    For example, entering 55 would produce: 55, 27, 13, 6, 3, 1 Run the code, first entering a value outside the range 10 -
    60. Then run the code again with a valid value.
    • Make sure your output shows the results of both runs

  • @vinncyclopedia3207
    @vinncyclopedia3207 ปีที่แล้ว

    2:17, instead of print("Hello "+name) can you do print(f"ur name is {Name}")

  • @globalfinancetrading
    @globalfinancetrading ปีที่แล้ว +1

    Is there a way to turn a string into non-string? For example, a string can turn into int or float but not just words without the quotations.

  • @darrendavies5704
    @darrendavies5704 2 ปีที่แล้ว +1

    Broer, bedankt! Je doet het echt goed man👍👍👍

  • @kaiiemsawat3859
    @kaiiemsawat3859 2 ปีที่แล้ว +5

    Awesome!! I don't see many American use Celsius. And now you also use centimeters.
    Oh!! and the video is as great as always. I almost all your Java tutorials. Right now, I just start your Python and JavaScript together!!
    All are great!!!!!

  • @N3crvmEdits
    @N3crvmEdits ปีที่แล้ว +1

    Is there a way to create a input funktion looking like this: "" , I tried it several times, but got to no solution. Idea: Name = print("< ") + input(" ").strip() + print(">")

  • @Toxicbeing8750
    @Toxicbeing8750 4 หลายเดือนก่อน

    the way you teach is top notch

  • @MilosStevanovic1
    @MilosStevanovic1 3 ปีที่แล้ว +17

    I started learning this program just a few days ago and run into you. Your videos are awesome. However, I have a question (not sure if this too early to talk about), but how would I limit user to enter only alphabet not some numbers for his name?

    • @sammie1565
      @sammie1565 3 ปีที่แล้ว +11

      u can use the isalpha() function, if the entered string has anything but alphabets, the function would return a false value, so u can check if stringvalue.isalpha() == False, if yes, then there are string + numbers...
      Hope this helps

    • @fyuse1232
      @fyuse1232 2 ปีที่แล้ว

      you can also use the TRY and EXCEPT function to check if it is a aphabet or not if it isnt it will tell the user to enter the alphabet and will keep repeating until it gets it right, u would have to use a while loop to do that.

    • @oximas-oe9vf
      @oximas-oe9vf 2 ปีที่แล้ว

      as Fyuse said use try except but if the user typed a number insead of a name give them a massage saying something like "please retype your name correctly" or "only use letters" or whatever what you want the imput to be
      use if statement with isalpha() if you want no spaces

  • @alinasophhh
    @alinasophhh ปีที่แล้ว +1

    Bro idk why but when i run it there is nothing down below in the console, i have no idea what im doing wrong loool

  • @Amxxr-7
    @Amxxr-7 หลายเดือนก่อน

    Bro=("Amazing video!")
    >print(Bro)
    >> Amazing video!

  • @Yurhyhffhh
    @Yurhyhffhh 3 หลายเดือนก่อน

    How come I can find a TH-cam video on this specific issue and not any of the other incredibly specific issues I'm dealing with?

  • @dagim6625
    @dagim6625 11 หลายเดือนก่อน +1

    Thanks,bro!

    • @dagim6625
      @dagim6625 11 หลายเดือนก่อน

      Lessssssgooo

  • @chideraprince2283
    @chideraprince2283 19 วันที่ผ่านมา

    brooo you are good.really helped me a lot

  • @virtualconnect440
    @virtualconnect440 11 หลายเดือนก่อน

    I have issues understanding the logic of using input function and how it used followed by print. Trying to understand it by this video..Its a great video so far @brocode👏👏👏👏👏👏

  • @SuhasiniL
    @SuhasiniL 10 หลายเดือนก่อน

    After taking user inputs, what are different ways to hide user prompts in python for eg: what is your name? , how old are you ? such text should not appear after getting inputs from user.

  • @mowrldwide3302
    @mowrldwide3302 2 ปีที่แล้ว

    i love this video. thank you i couldnt find a video that explains all of this better

  • @armintech000
    @armintech000 2 ปีที่แล้ว

    6:09 bro u just smashed the Enter button

  • @fravitathomas2141
    @fravitathomas2141 2 ปีที่แล้ว

    Question: how do you set a variable to a persons age
    And complete it with the statement you have been alive

  • @JaceMoore1
    @JaceMoore1 ปีที่แล้ว

    Thank you you’re helping me with my homework appreciate you

  • @intenzgamerz4882
    @intenzgamerz4882 2 ปีที่แล้ว

    Thank You dude I was trying a code and it did not work
    Your tutorial helped me alot
    thank you

  • @minusplus7891
    @minusplus7891 ปีที่แล้ว

    THANK YOU SO MUCH FOR THIS VIDEO! IT HELPED ME A LOT

  • @aebordones00
    @aebordones00 ปีที่แล้ว

    👍👍👍👍👍 The best tutorial!

  • @Tulio666
    @Tulio666 24 วันที่ผ่านมา

    cool content mr bro

  • @OffStandard
    @OffStandard ปีที่แล้ว

    Thanks I finally got rid of my homework

  • @MsOritz
    @MsOritz ปีที่แล้ว

    Thank you so much Bro Code. what you just taught me is simply amazing, you truly have a gift. Thank you once again

    • @DreadHead40
      @DreadHead40 6 หลายเดือนก่อน

      he was born a giga chad

  • @GuadelupeCooks
    @GuadelupeCooks 2 ปีที่แล้ว

    Ok. I am so dumb...But I have questions.
    1. How do you run the file at the bottom?

  • @Primitive_Code
    @Primitive_Code 6 หลายเดือนก่อน

    Can the user input be an arithmetic operation? For example when you ask them "How old are you? " Can they enter 20+1 instead of 21? If not, how to fix that? Thanks.

  • @zinaidaseremet2775
    @zinaidaseremet2775 ปีที่แล้ว

    THANK YOU SO MUCH FOR THIS VIDEO! IT HELPED ME A LOT 🤩

  • @PekkaNetwork
    @PekkaNetwork 3 ปีที่แล้ว

    Thank you Bro I just learnt QBasic now starting to learn Python then going on to httml

  • @sheydaau
    @sheydaau 3 ปีที่แล้ว +1

    Broooooo good job!!💛💛💛

  • @kelleyannbart8348
    @kelleyannbart8348 ปีที่แล้ว

    Awesome and simple to follow and learn. Thank you bro for the tutorial. So valuable!!🙏👍

  • @jaysonabayan3279
    @jaysonabayan3279 3 ปีที่แล้ว +1

    BROOOOOOOOOO YOU ARE SO AWESOME

  • @bashitam
    @bashitam 3 หลายเดือนก่อน

    Hey Bro!
    I have a project where it relies on the user inputting a number and I use this line of code
    A = float(input("Insert a number (it can be a decimal number)"))
    If the user inputs anything else other than numbers my whole code breaks.
    Can you help me?

  • @jackjshorts
    @jackjshorts 2 ปีที่แล้ว

    Really cool! Used it to make a madlib!

  • @fycs_101_mustafa9
    @fycs_101_mustafa9 2 ปีที่แล้ว

    Thanks for the course

  • @msitwana
    @msitwana ปีที่แล้ว

    Which editor are using there Bro?

  • @PRAN-kx1ml
    @PRAN-kx1ml 3 ปีที่แล้ว

    amazing video. i like the way you teach each and every concept

  • @patrunks3906
    @patrunks3906 6 หลายเดือนก่อน

    I love the videos sir, thank you.

  • @bluekiddo9969
    @bluekiddo9969 3 ปีที่แล้ว

    as always bro never dissapoints us

  • @ralphibezim352
    @ralphibezim352 2 ปีที่แล้ว

    Great vid Bro

  • @IShootMeme
    @IShootMeme 5 หลายเดือนก่อน +1

    Thanks so much!

  • @linuso524
    @linuso524 2 ปีที่แล้ว +1

    THIS REALY HELPED

  • @dapilagaandrewb.8033
    @dapilagaandrewb.8033 6 หลายเดือนก่อน

    Nice tutorial

  • @hadisdsdd3713
    @hadisdsdd3713 ปีที่แล้ว

    Just my question is how to write the equal sign ( = ) cause I don't have it on my keyboard

  • @evang2496
    @evang2496 3 ปีที่แล้ว +4

    Hi, can you help with coding for "while"looping?

    • @mrnobo9261
      @mrnobo9261 5 หลายเดือนก่อน

      while True:
      a=int(input("what is 1+1= "))
      if a==2:
      print ("correct!")
      break
      else:
      print("incorrect")

  • @Sure_Math_Center
    @Sure_Math_Center ปีที่แล้ว +1

    Hey! Thank you!

  • @youtalemjid8002
    @youtalemjid8002 2 หลายเดือนก่อน

    What is the difference between input and print please

  • @kuikz6353
    @kuikz6353 2 ปีที่แล้ว +1

    Bro i have a question i hope you could help me
    So whenever i run any simple input code
    The IDE doesn’t accept user input so i can’t write down anything in the console when i run the code
    What should i do ?

  • @sanuratennakoon7979
    @sanuratennakoon7979 ปีที่แล้ว

    from what software are you opening python?. Cause when I type this code in W3School web it doesn't work.

  • @juancaca1993
    @juancaca1993 2 ปีที่แล้ว

    Subscribed bro : D

  • @icebladeplays
    @icebladeplays 3 ปีที่แล้ว +1

    Thank you. This is very helpful! :)

  • @נעמהבןדוד
    @נעמהבןדוד 5 หลายเดือนก่อน

    bro that's was one of the easiest ladders I've seen

  • @TrusteestDesiChhora
    @TrusteestDesiChhora ปีที่แล้ว

    Very nice sir ❤😊

  • @azizbekrakhimov1885
    @azizbekrakhimov1885 9 หลายเดือนก่อน

    Wonderful bro👍

  • @galaxymanharry
    @galaxymanharry 2 หลายเดือนก่อน

    thanks man very helpful

  • @ForestFolk_
    @ForestFolk_ 11 หลายเดือนก่อน

    Great explanation.

  • @elmathiaspe
    @elmathiaspe 2 หลายเดือนก่อน

    great tutorial

  • @nyiaung4963
    @nyiaung4963 8 หลายเดือนก่อน

    very helpful for my study

  • @SonceraAdams
    @SonceraAdams 4 หลายเดือนก่อน

    i love you, bro code.

  • @uzukealucard6158
    @uzukealucard6158 2 ปีที่แล้ว

    Can U make a vid creating this program and use GUI with it?

  • @dominicshib3276
    @dominicshib3276 3 ปีที่แล้ว +1

    the float input takes in a int like 32 and returns a float 32.0. if you input a float for age input which is int() it crashes

  • @ghalemkarimoppo8892
    @ghalemkarimoppo8892 ปีที่แล้ว

    Thanks, useful knowledge

  • @radinahmadi2211
    @radinahmadi2211 9 หลายเดือนก่อน

    Thank you , for this divine video

  • @minhazrahman7463
    @minhazrahman7463 2 ปีที่แล้ว

    You are Awesome Bro 🤙

  • @sureshkrishna3915
    @sureshkrishna3915 3 ปีที่แล้ว +1

    Awesome dude

  • @Geedi6
    @Geedi6 7 หลายเดือนก่อน

    you are great teacher thank you Bro

  • @RyanNaser-t1p
    @RyanNaser-t1p 4 หลายเดือนก่อน

    so good
    you should do a ocr coure it for gcse

  • @thorcoder1
    @thorcoder1 3 ปีที่แล้ว +1

    Thanks sir ji👍👍👍

  • @maansaad5945
    @maansaad5945 9 หลายเดือนก่อน

    How can I remove the result of all the inputs that I run it before in VSCode? I mean When I run hello I found the name in code terminal!! Not in python terminal is that normal? And do you think it can delete because I want to do it again with different results.

  • @ThomasKelvinWorkspace
    @ThomasKelvinWorkspace 11 หลายเดือนก่อน

    What is the best extension to download for debugging for Python?

  • @MujinMuka
    @MujinMuka ปีที่แล้ว

    very good video this helps tons

  • @Evan1527
    @Evan1527 2 ปีที่แล้ว +1

    Copy-pasted your code and keep getting an error :/
    File "", line 1, in
    NameError: name 'Bro' is not defined

    • @Soso_maness
      @Soso_maness 2 ปีที่แล้ว

      same, idk what to do:(

    • @Evan1527
      @Evan1527 2 ปีที่แล้ว +5

      @@Soso_maness I just found how to fix it. Type raw_input instead of just input . I guess it changed in some update recently.

    • @jassimt4445
      @jassimt4445 2 ปีที่แล้ว

      @@Evan1527 thank you verrrrrry much

    • @abhiramcs6581
      @abhiramcs6581 ปีที่แล้ว

      @@Evan1527 tnks mahnn...

  • @pallabikundu5748
    @pallabikundu5748 5 หลายเดือนก่อน +7

    Who are the Minecraft players😊.

  • @barristar9338
    @barristar9338 2 ปีที่แล้ว

    Thanks, this is so easy to understand

  • @nqk_0662
    @nqk_0662 2 ปีที่แล้ว

    Hey dude how do I show the vaule of something? Like
    Discount=(10*30)
    How do I display discount amount? That is 300

  • @rashidchibvuri2036
    @rashidchibvuri2036 2 หลายเดือนก่อน

    NICE BRO, THANK YOU.

  • @vannguyentien4212
    @vannguyentien4212 ปีที่แล้ว

    how can i make the user input become underline right after i press enter(i dont need to use print to know that its underline, it display on terminal after i press enter)? thank you bro

  • @floatingcloud5955
    @floatingcloud5955 2 ปีที่แล้ว

    Print (" you are"+"str(age)+,"years old")
    In your code there are two age variable with different values assigned to it but it chose 2nd one(age=age+1) to print, why?
    Is it because first one process finished before second one?

  • @Pb3-Vids
    @Pb3-Vids ปีที่แล้ว

    Thank you bro I love it

  • @b.abdelmoumen4905
    @b.abdelmoumen4905 ปีที่แล้ว

    very helpful ,bro ;)

  • @toyedavies406
    @toyedavies406 2 ปีที่แล้ว

    good one bro

  • @bobibibobibjhhlk4876
    @bobibibobibjhhlk4876 ปีที่แล้ว

    How do you input probabilities into python

  • @Crimson_Avant
    @Crimson_Avant ปีที่แล้ว

    liked👍, subscribed✅ and i am now a fellow BRO

  • @Jackobfnn
    @Jackobfnn 7 หลายเดือนก่อน

    how do i send it to someone so they see the questions but not the whole code and they can just reply to the questions

  • @Your_No_1_Hater
    @Your_No_1_Hater 2 ปีที่แล้ว

    Who to print all those in different lines and big space tabs

  • @xwoods16x83
    @xwoods16x83 3 ปีที่แล้ว

    I don't know what is going on with my computer. I'm typing in the exact same thing as you and no matter what I type in it says "name 'bro' is not defined" I can't even get it to print because it does not recognize it even though I'm doing the exact same thing. This is so frustrating

    • @Iberokolxi
      @Iberokolxi 2 ปีที่แล้ว +1

      Type: raw_input instead of input.

  • @CordyBurgett.1
    @CordyBurgett.1 ปีที่แล้ว

    What’s the program you are on?

    • @janaadam7834
      @janaadam7834 10 หลายเดือนก่อน

      Paycharm

  • @biting_1625
    @biting_1625 ปีที่แล้ว

    Bro u saved me day before test

  • @RishonRidish
    @RishonRidish 3 หลายเดือนก่อน

    Nice 👍 🙂

  • @prancer7796
    @prancer7796 5 หลายเดือนก่อน

    name = input("what is your name: ")
    print("Hello" + name)

  • @jeelpatel1761
    @jeelpatel1761 2 ปีที่แล้ว

    Hey @Bro Code
    I want to make you see my code it work same as like you but it is less complicated
    name = input("What is your name")
    age = input("How old are you")
    age = int(age)
    print("Hello" + " " + name + " "+ "great Job")
    Any suggestion?

  • @faroukbensoukehal7111
    @faroukbensoukehal7111 3 ปีที่แล้ว

    it works fine without str() int() (data types)I think this is because the update or something like that