@ymlx__ That is great news and reassurance, Iโm glad you are loving it!! Make that money sis ๐ฅ๐ And weโll see for me, itโs just a thought for now ๐
indexing in python, how do I solve???
s = โPython for Business Analyticsโ
for letter in s:
index = s.index(letter?
print(f โThe letter โ{letter}โ is in position {index}โ)
how to make it so python doesnโt count the same index position for repeated letters??
hereโs a fun activity to try:
Create a game where:
1. The program randomly selects a number between 1 and 5 using random.random() technique
2. Ask the user to try to guess the number.
3. The program gives feedback ("Too high", "Too low", or "Correct!") after the guess.