Тёмный

Generate random numbers in Python 🎲 

Bro Code
Подписаться 2,2 млн
Просмотров 64 тыс.
50% 1

Опубликовано:

 

1 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 67   
@BroCodez
@BroCodez Год назад
import random low = 1 high = 100 options = ("Rock", "Paper", "Scissors") cards = ['2', '3', '4', '5', '6', '7', '8', '9', '10', 'J', 'Q', 'K', 'A'] # number = random.random() # number = random.randint(low, high) # choice = random.choice(options) # random.shuffle(cards) # -------------- NUMBER GUESSING GAME -------------- import random low = 1 high = 100 guesses = 0 number = random.randint(low, high) while True: guess = int(input(f"Enter a number between ({low} - {high}): ")) guesses += 1 if guess < number: print(f"{guess} is too low") elif guess > number: print(f"{guess} is too high") else: print(f"{guess} is correct!") break print(f"This round took you {guesses} guesses")
@Hindu-hai_hum168
@Hindu-hai_hum168 Год назад
Sir please number send me
@mirzaahmadsodiqov2457
@mirzaahmadsodiqov2457 10 месяцев назад
Hello Bro, I tried to write the code. I don't know exactly why but when I just copied your above mentioned code my ''Pycharm'' gave me the next: Traceback (most recent call last): File "C:\Users\mirza\PycharmProjects\pythonProject\a.py", line 1, in import random File "C:\Users\mirza\PycharmProjects\pythonProject andom.py", line 4, in random.randint(x, y) ^^^^^^^^^^^^^^ AttributeError: partially initialized module 'random' has no attribute 'randint' (most likely due to a circular import)
@chug_jug200
@chug_jug200 10 месяцев назад
if the file name is random.py that may be the problem. Rename ur file and it will fix it@@mirzaahmadsodiqov2457
@caseywong8565
@caseywong8565 7 месяцев назад
Hi Bro... a question about this following syntax ----> # random.shuffle(cards) Why does this work? # random.shuffle(cards) #print(cards) and why does this not work?: card = random.shuffle(cards) print(card) the latter seems to follow the logic in your previous examples in this video. What am I missing?
@jeshmex
@jeshmex Год назад
Thank you for your help, You’re better than my Professors!
@ComputerAddict23
@ComputerAddict23 2 месяца назад
It took me so long to figure out i just had to make an indent for while True 😭😭
@sakshamkapoor491
@sakshamkapoor491 Год назад
Bcoz of you I had learn the coding and develop my skills and due to that i am able to get admission in IIT all bcoz of you thank you for your hardwork and dedication☺️☺️
@VAIBHAVMALHOTRA19
@VAIBHAVMALHOTRA19 5 месяцев назад
Best of luck for your journey. Btw which IIT?
@orewa_AB
@orewa_AB 5 месяцев назад
never knew there is a coding test to get admission into IIT , I thought they only test your PCM knowledge to give you admission for CSE
@Gargantuan_Inferno
@Gargantuan_Inferno Месяц назад
Bro stop capping pretty sure you are in tier 3-4 college or in school...never has IIT asked anything CS related lmfao the audacity
@alex1311t
@alex1311t Год назад
First python game I've ever made. Feel super pround of myself lmfao. Thanks for the video boss!
@FerintoshFarmsPhotography
@FerintoshFarmsPhotography Год назад
I thought about not liking the video because it was at 669, so lets get it to 6669 bros.
@NikolasManoudakis
@NikolasManoudakis 2 месяца назад
We did NOT get it to 6669 😭
@sarapiqui_educational
@sarapiqui_educational Год назад
Thanks so much. Already did a personal version with some extra features.
@emonthetitobalfour6741
@emonthetitobalfour6741 11 месяцев назад
How to you minimal your run terminal, I mean green color output of you code . How do you do that?
@ComputerAddict23
@ComputerAddict23 2 месяца назад
Just put \033[92m before every print Example: print("\033[92mJohn")
@MiBaLinuxTech
@MiBaLinuxTech 11 месяцев назад
Hi bro look at this: Enter a number between (1 - 100): 95 95 is too high Enter a number between (1 - 100): 93 93 is too low Enter a number between (1 - 100): 94 94 is too low Enter a number between (1 - 100): / 95 is tigh, 94 is to low What is happen?
@praveenkumarmj2387
@praveenkumarmj2387 Год назад
Thank you brother.
@ssigitas69
@ssigitas69 Год назад
Looks so simple when I watching your videos but when I want to do my self......
@freaknation1314
@freaknation1314 3 месяца назад
Hurt your brain by giving deep ideas and concepts ...and u become unique legend
@marilynlucero9363
@marilynlucero9363 2 месяца назад
Yeah exactly this... for already a few years, have had to randomize a d&d-esque game I have with my friends with the only major issue being that figuring out exactly what's been rolled takes a short time... I just need something coded so I can get a result with 1 click of a button. Trying to watch this, DLed Python, didn't get the screen I see, tried it with Visual (something) Code, didn't get anything either and then Microsoft wanting me to give Python language while I've already been typing that. I am left even more confused right now, tried with both JavaScript and Python. Having all the creativity to make something for my friends and I to enjoy without any of the skills besides typing on a keyboard like a rabid ape to actually pull it off efficiently.
@binoyendupoddar2513
@binoyendupoddar2513 2 месяца назад
Can anyone explain why my idle don't look like this ?
@jadotati7641
@jadotati7641 Год назад
Hi bro code , I habe a question about java swing. In your last java swing video (ping pong game) you used the "Rectangle" class. example: "Public class paddle extends Rectangle {" What does " extends Rectangle" mean ? I searched a lot but nobody talked about this on youtube or google before!
@CatChrist
@CatChrist Год назад
not sure if someone has answered this for you already or not, but that is how inheritance from a class works in Java! So in the example you give, Rectangle is the parent class to the child class Paddle. This gives Paddle (assumedly a new user created Class, I haven't seen his video) all the same attributes as the Rectangle included in the package he is using. In python it would look like this: class Paddle(Rectangle): QUICK EDIT -> tldr: Rectangle is a class that Paddle inherits from
@unholycrusader69
@unholycrusader69 Год назад
Cryptography 4 dummies
@gemanimeku912
@gemanimeku912 Год назад
can u teach me, how to generate random number with letter, like a number plate of car "B 3654 ZA"
@atrantech11
@atrantech11 9 месяцев назад
I'd put your choices into an list, then call .choice(nameOfList) on it through while loop with the maximum number of characters you want in your number plate
@brunogreco290
@brunogreco290 Год назад
Hello. Please course of Spring Security. Docker and Kubernetes
@m8nfan975
@m8nfan975 Год назад
❤ from India bro 🥰🥰
@DefinedCmajor
@DefinedCmajor Год назад
I wonder if i can make this code something similar to a input-spamming program. I guess i should find out
@creeprshh3812
@creeprshh3812 Год назад
🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍
@ßavs
@ßavs 26 дней назад
thanks from Nepal ❤
@filippobargagna
@filippobargagna 8 месяцев назад
Iteresting that you practically explained binary search while solving the game :)
@brunogreco290
@brunogreco290 Год назад
Hello. Please complement your Java course with Functional Interfaces. Predicate, Consumer, Supplier.
@meetmakvana7332
@meetmakvana7332 10 месяцев назад
Thank you so much Bro Code You saved my Computer Science in School You have helped me improve significantly I couldn't be more grateful of you!!
@KoKo_Bunch
@KoKo_Bunch Год назад
bro! you should have discord discussion. i would love to join yours
@MaxMax-mk7ji
@MaxMax-mk7ji Год назад
Thank you for Help! While I ran my code the first time I used the same guesses because I had also the 9 :)
@riverkey79
@riverkey79 Год назад
Does anybody know how to remove the square brackets, speech marks, commas and spacing from the output? So if you were shuffling the cards, the output just read - 31JA957K etc?
@siyamfakur1263
@siyamfakur1263 Год назад
import random cards = ['2', '3', '4', '5', '6', '7', '8', '9', '10', 'J', 'Q', 'K', 'A'] ans = "" for i in cards: ans = ans+i print(ans)
@riyal_dulal
@riyal_dulal 2 месяца назад
random module error
@aimentality
@aimentality 10 дней назад
Thanks a lot ❤
@Priceygames
@Priceygames 9 месяцев назад
I am now convinced python is better than c++. C++ is so long to code while python only needs 1 line 😮
@VAIBHAVMALHOTRA19
@VAIBHAVMALHOTRA19 5 месяцев назад
Every language is better in its own way. Python is an interpreter language whereas C++ is a compiler language. Both languages have different uses for example python is mainly used in data science whereas C++ is used for developing OS or video games.
@ramkoirala3457
@ramkoirala3457 4 месяца назад
🎲
@VyCorr
@VyCorr 11 месяцев назад
What IDE are you using @BroCode please reply 🙏🙏🙏🙏
@davidhirschhorn2960
@davidhirschhorn2960 8 месяцев назад
He is using PyCharm, community (free) version. The first video in the series has him installing it.
@cvhjska
@cvhjska Год назад
a hint of binary search🤔
@dominikalatusek7686
@dominikalatusek7686 10 месяцев назад
Thank You BroCode!
@Malek20_cool
@Malek20_cool 3 месяца назад
whats the app your running python in ?
@caglakazanc6837
@caglakazanc6837 3 месяца назад
pycharm
@TopWantedPlayers
@TopWantedPlayers Месяц назад
Legend​@@caglakazanc6837
@insanesam530
@insanesam530 Год назад
returns none ):
@Amit-m1h
@Amit-m1h Год назад
Thank you bro
@bong_14k
@bong_14k Год назад
the bast brother
@hritiktheopgamer4122
@hritiktheopgamer4122 Год назад
thank for info
@Zortdedifare
@Zortdedifare Год назад
1 praying
@popularsun
@popularsun Год назад
yo!
@MeSoyCapitan
@MeSoyCapitan Год назад
How would you weight options, like you were using a loaded dice? For example if you had a luck stat, it could increase your chance of a 6 or a face card.
@MeSoyCapitan
@MeSoyCapitan Год назад
Maybe this could make for an enticing thumbnail / video title.
@AScholarsVlog
@AScholarsVlog 2 месяца назад
@@MeSoyCapitan haha
@GuiROYER
@GuiROYER Год назад
tmj bro. TYS
@sakshamkapoor491
@sakshamkapoor491 Год назад
Hi bro
@laopichthyrith2490
@laopichthyrith2490 Год назад
Second
@rfatefehelvacoglu335
@rfatefehelvacoglu335 Год назад
i lost 03:20
@Uberdurden
@Uberdurden 11 месяцев назад
import random low=1 highest=50 guesses=0 number=random.randint(low,highest) while True: texminler=int(input(f'Guess the number between {low} - {highest}: ')) if number==12: print('you doing well budy!') break elif number==24: print('your soo good!') break elif number==48: print('holyyy!!!') break else: print('another time budy !') i think this is much better huh?😃
Далее
Compiled Python is FAST
12:57
Просмотров 111 тыс.
ROCK PAPER SCISSORS game in Python 🗿
9:29
Просмотров 130 тыс.
НОВАЯ "БУХАНКА" 2024. ФИНАЛ
1:39:04
Просмотров 173 тыс.
Как снимали мой клип POLI - Котик
00:37
When Goalkeepers Get Bored 🤯 #3
00:27
Просмотров 1,1 млн
Please Master These 10 Python Functions…
22:17
Просмотров 167 тыс.
FREE PYTHON TUTORIAL [TAGALOG]
43:44
Просмотров 1,8 тыс.
Python lists, sets, and tuples explained 🍍
15:06
Просмотров 279 тыс.
5 Useful F-String Tricks In Python
10:02
Просмотров 310 тыс.
Python concession stand program 🍿
8:10
Просмотров 46 тыс.
25 nooby Python habits you need to ditch
9:12
Просмотров 1,8 млн
Encryption program in Python 🔐
8:41
Просмотров 121 тыс.
НОВАЯ "БУХАНКА" 2024. ФИНАЛ
1:39:04
Просмотров 173 тыс.