Trexeon
@Smartystuff
0
0
WordleAllows you to solve (most) Wordle puzzles.
4
0
0
Guess the date using the process of elimination as well as logic. Kind of boring to do but I'm still proud of the code
Python
Mcdonalds has a create a burger deal! What will you make?
inpired by https://subway.becketthodes.repl.run go check his suubway game out.
Python
This python code can guess whatever number you choose. You can probably guess how it works just by looking at the code, it's fairly simple. simple, bu
Python
I am currently learning python and I was wondering in what context I would want this
s = 'Hey look at this '+str(7)+' I like '+str(7)
print(s)
over th
Python
Geocube101 In this case there is no difference, but in the event "7" is replaced by a variable, you would use the top method to easily print the value of said variable into a string
Example:
num = int(input('Enter a number: '))
print('Your number is ' + str(num))
`3 years ago
theangryepicbanana they are the same thing, but doing str(...) changes whatever you put in the (...) into a string3 years ago