of     1   

BeatableChicken
#228361986Sunday, December 03, 2017 3:34 AM GMT

Hope this helps, import random num = random.randint(0,100) won = False while won == False: guessed_num = int(input("Select a number")) if num == guessed_num: print("You got it!") won = True elif num > guessed_num: print("Higher") continue elif num < guessed_num: print("Lower") continue
BeatableChicken
#228362224Sunday, December 03, 2017 3:42 AM GMT

I hope I have satisfied your guy's number guessing needs and I be looking forward to a nice large sum deposited into my roblox account tomorrow.
TaaRt
#228363259Sunday, December 03, 2017 4:10 AM GMT

And you post the most basic Python tutorial examples in a Lua forum why?
BeatableChicken
#228363501Sunday, December 03, 2017 4:18 AM GMT

im not copying this from anywhere i wrote it myself
GingeyGamerYT
#228363771Sunday, December 03, 2017 4:27 AM GMT

tweak it a bit WALA Its Iua :P
TaaRt
#228363801Sunday, December 03, 2017 4:28 AM GMT

Point remains; no reason to post basic Python in a Lua forum
GingeyGamerYT
#228363806Sunday, December 03, 2017 4:28 AM GMT

yep :P
BeatableChicken
#228363843Sunday, December 03, 2017 4:29 AM GMT

no where in the rules it says this is a lua forum, it just says this is a place for programming
GingeyGamerYT
#228363859Sunday, December 03, 2017 4:30 AM GMT

"Roblox scripting" Roblox uses Iua :P
TaaRt
#228363894Sunday, December 03, 2017 4:31 AM GMT

It is not a 'place for programming' it's a place to discuss 'ROBLOX scripting' (which is Lua and Lua alone). Even if it was Lua it's a very simple script and has no place here
BeatableChicken
#228363915Sunday, December 03, 2017 4:32 AM GMT

so writing a program while playing roblox is not roblox scripting?
GingeyGamerYT
#228363952Sunday, December 03, 2017 4:33 AM GMT

yes lmao :P
BeatableChicken
#228364001Sunday, December 03, 2017 4:35 AM GMT

how about writing a python program that send key presses to roblox?
TaaRt
#228364019Sunday, December 03, 2017 4:36 AM GMT

Python is irrelevant, and this is a forum for asking for help, not asking for attention
128Gigabytes
#228364043Sunday, December 03, 2017 4:36 AM GMT

I like the reverse of this better where you tell it higher or lower. Basically First guess = middle of min and max If higher, new min = last guess If lower, new max = last guess Repeat until correct

    of     1