Welcome to Expt Discussions! #1
Closed
diegomanuel10x
announced in
Announcements
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
I have some doubts with a particular segment of a program that I was buid that "predicts" whether stocks rise or fall.
I would like to get the max number of subs possible on the program. I appreciate any assistance.
elif list_1 == "Fall":
print("The stocks fell.\n ########################################################################################")
i = 3
while i <= 3:
crunch = num_of_clients % 10
first_batch = crunch
print("The stock will rise.\n" * first_batch)
print("The stock will fall.\n" * first_batch)
i += 1
if list_1 == "Rise":
print("The stocks rose.\n You should consider subscribing :)")
elif list_1 == "Fall":
print("The stocks fell.\n You should consider subscribing :)")
All reactions