Hi, I’m learning Python and built a simple chatbot using loops and conditions. It can respond to greetings and basic inputs. I’d appreciate feedback on how to improve it or make it smarter.
name = input("Bot: What's your name? ") while True: user = input("You: ").lower() if "hello" in user: print(f"Bot: Hi {name}!") elif "how are you" in user: print("Bot: I'm just code, but I'm doing fine!") elif "bye" in user: print("Bot:
Apple has announced new minimum SDK requirements for App Store submissions starting April 28, 2026. If you're working on an iOS app, it's time to plan your upgrade.…