Nandha's Channel [ தமிழன் பாட்கள் ] ("⁧;⁧(⁧"⁧
1.53K subscribers
180 photos
125 videos
40 files
296 links
🗣️ Discussion Group - @NandhaSupport
📢 Network Channel - @NandhaNetwork
🛒 Market Shop - @NandhaMarket

Owner: @Nandha

ℹ️ GitHub Account:
https://github.com/nandhaxd

ℹ️ GitHub Organization: https://github.com/Nandhabots
Download Telegram
Screenshot 2026-03-01 185042.png
58.8 KB
Remember, we're adding new study materials to @TnpscRobot. Use them wisely to improve your preparation!

"New TNPSC study materials added to @TnpscRobot! 📚 Use them smartly to boost your exam prep. Share with aspirants! #TNPSC"
👾🔥 ANIME CHARACTER CATCHER CONTEST IS LIVE 🔥👾

A new character rises… will it be you?

In a world ruled by ranks, only the strongest stand at the top.
Now it’s your turn to enter the anime world inside @AnimeCatchBot

## 🏆 Create Your Own Character:

🏷 Name
🏆 Rank (S / A / B / C / D)
🌌 Anime Title
📜 About Your Character

⚠️ custom image required — your legend is enough.

🔥 S Rank isn’t given.
It’s claimed.

Are you ready to rise?

📢 Updates: @NandhaBots
💬 Support: @NandhaSupport

👾 Collect • Search • Share your favorite anime characters
Made with ❤️ for anime fans everywhere
/addc name | rank | anime name | about

Rank should be capital: S, A, B, C, D
import random


def play_game():
print("Welcome to the Number Guessing Game!")
print("Think of a number between 1 and 100, and I will try to guess it.")
print("Press 'y' if my guess is correct, 'l' if your number is lower, or 'h' if your number is higher.")

low = 1
high = 100
guess_count = 0
correct_guess = False

while not correct_guess:
guess = random.randint(low, high)
print("Is your number", guess, "?")
user_input = input("Enter 'y', 'l', or 'h': ")

if user_input == "y":
print("I guessed it! Your number is", guess)
print("I made", guess_count, "guesses.")
correct_guess = True
elif user_input == "l":
high = guess - 1
guess_count += 1
elif user_input == "h":
low = guess + 1
guess_count += 1
else:
print("Invalid input. Please try again.")


play_game()


😊 Guess a number.
1
Forwarded from BALA ♡︎
New features added
👍1
👍❤️ I have added more than 300+ files to our @TnpscRobot & added new category 'python' which may have python category PDFs and files.

You want collaboration with us contact
t.me/Nandha.

😊 Share your meterial worldwide. 🌎
from datetime import date


def calculate_age(birthday):
today = date.today()

# Check if the birthdate is in the future
if today < birthday:
return "Invalid birthdate. Please enter a valid date."

day_check = ((today.month, today.day) < (birthday.month, birthday.day))
year_diff = today.year - birthday.year - day_check
remaining_months = abs((12-birthday.month)+today.month)
remaining_days = abs(today.day - birthday.day)

# Return the age as a formatted string
age_string = f"Age: {year_diff} years, {remaining_months} months, and {remaining_days} days"
return age_string


if __name__ == "__main__":
print(" Age Calculator By Python")

try:
birthYear = int(input("Enter the birth year: "))
birthMonth = int(input("Enter the birth month: "))
birthDay = int(input("Enter the birth day: "))
dateOfBirth = date(birthYear, birthMonth, birthDay)
age = calculate_age(dateOfBirth)
print(age)
except ValueError:
print("Invalid input. Please enter valid integers for the year, month, and day.")



Age calculator 😊
1💅1
Forwarded from BotNews
This media is not supported in your browser
VIEW IN TELEGRAM
Bot API 9.4

🎨 Custom Emoji and Buttons
• Bots can now use custom emoji in outgoing messages if their owner has Telegram Premium.
• Keyboard and inline buttons now support background colors and custom emoji.

💬 Private Chat Topics
• Bots can now create new topics in 1-on-1 chats.
• Via the BotFather Mini App, bot owners can also prevent users from creating or deleting topics.

🤖 Profile Info
• Bots can now set and remove their own profile pic.
• User profile audios are now visible to bots.

🎁 Gifts
• Unique gifts now include model rarity information.
• Out-of-the-box support for detecting gifts burned after crafting.

✈️ General
• Bots now handle service messages when a chat owner leaves or ownership changes.
• Video objects now include a list of available qualities.

• And more, see the full changelog for details:

https://core.telegram.org/bots/api-changelog#february-9-2026
Please open Telegram to view this post
VIEW IN TELEGRAM
11