|
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 |
|
|
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. |
|
TaaRtJoin Date: 2009-04-26 Post Count: 5070 |
And you post the most basic Python tutorial examples in a Lua forum why? |
|
|
im not copying this from anywhere
i wrote it myself |
|
|
tweak it a bit
WALA
Its Iua
:P |
|
TaaRtJoin Date: 2009-04-26 Post Count: 5070 |
Point remains; no reason to post basic Python in a Lua forum |
|
|
|
no where in the rules it says this is a lua forum, it just says this is a place for programming |
|
|
"Roblox scripting"
Roblox uses Iua
:P |
|
TaaRtJoin Date: 2009-04-26 Post Count: 5070 |
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 |
|
|
so writing a program while playing roblox is not roblox scripting? |
|
|
|
how about writing a python program that send key presses to roblox? |
|
TaaRtJoin Date: 2009-04-26 Post Count: 5070 |
Python is irrelevant, and this is a forum for asking for help, not asking for attention |
|
|
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 |
|