TIGRAY TECH 🖥💻 @tigraytechc Channel on Telegram

TIGRAY TECH 🖥💻

@tigraytechc


TECH TIPS

SCRIPT'S

MOD APPS

Owner: @Medhanye6

TIGRAY TECH 🖥💻 (Amharic)

በቀጣሊዎች ከታች ታሪክ ስለሆነ የቴሌግራም አገልግሎት TIGRAY TECH 🖥💻 አለ፤ ይህ አገልግሎት በምጥላፍ (Hacking)፣ በፕሮግሬምንግ ቋንቋዎች፣ እና በእንቅስቃሴ ቴክኖሎጂ (IT) ፣ ሲያሰራርሉ እና በሲቲም አለማምጣት እንዲወስዱ የደንብና ስራ ይሁኑ። ይህ አገልግሎት በአንድ ቀን ለአስተዳደር እንቅስቃሴ እና ፕሮግሬም ቋንቋለውን የደንቡን ቲንታርንት እንዲጠቀሙ፣ ለምንም አገልግሎት የሚሆኑ ኣገልግሎቶችን ጨምሮ ነበር። እንደዚህ ደግሞም በ@Medhanye7 ወይም TIGRAY TECH 🖥💻 እንዲተደገፉ የምጥላፍ ውስጥ ስለ ሞባይል ምክንያትና ለመጠቀም ይደገመ።

TIGRAY TECH 🖥💻

16 Feb, 14:05


Join link
https://guild.xyz/magic-newton

Script
https://github.com/zainarain279/MagicNewton.git

The script isn't mine but it's working perfectly

TIGRAY TECH 🖥💻

07 Feb, 14:41


🔹Do you want telegram bot codes ?

I will share if u want 🗿

TIGRAY TECH 🖥💻

03 Feb, 10:03


If u participate in a waitlist before 🙃

https://t.me/quietlyhouse_bot?start=Bot38055520

Fund Raised 5.1M
Cost 0$

Trump
Melania
Quietly ✔️

Probably something 🐸
#jff

TIGRAY TECH 🖥💻

27 Jan, 07:19


$CRYPTO Airdrop Waitlist Form

🔗Link - https://forms.gle/H164dZon6PTcWAcHA

✔️Follow the telegram channel & X account
✔️Retweet the post
✔️Submit ur Solana address
✔️Done

Don't panic the form is mine just for fun 😁

Might be something 🙃

TIGRAY TECH 🖥💻

25 Jan, 07:57


Postponed to feb 25th 🫤

They thought the day won’t come

TIGRAY TECH 🖥💻

24 Jan, 19:29


Hamza Bendelladji

an Algerian hacker who extracted $4 billion from 217 different banks and donated it all to poor African countries and Palestine. He was arrested in Bangkok in 2013and in 2016, USA court sentenced him 15 years in prison. And every time people saw him him he was smiling with no regrets on his face.

His code name was BX1 and also nicknamed as smiling hacker. It took more than 5 years to FBI and Interpol to find him.

Bro didn't even opposed arrest, just smiled and said good bye to his family 🫠

🙂 Must join our Channel @TIGRAYTECHC

Give Reactions fast and share post else no more like this 💧

TIGRAY TECH 🖥💻

20 Jan, 11:06


W teacher 🔥😂

TIGRAY TECH 🖥💻

17 Jan, 19:21


Can’t believe we’re getting TikTok ban before gta 6 🗿

TIGRAY TECH 🖥💻

16 Jan, 14:02


Galaxy S25 Slim Leaked!!

TIGRAY TECH 🖥💻

14 Jan, 20:17


💎 Blockchain Contest, Round 1

Telegram and TON Core announce a new coding contest!

Prize Fund: $100,000 to $200,000
Deadline: 23:59, February 4th (Dubai time)
Tasks: Blockchain Validation (C++ code optimization) and/or Trustless Bridge (participants can choose one or both).

Prize Fund Distribution
The total prize fund, up to $200,000, will be allocated based on each participant’s overall contribution. Winners will also have the opportunity to compete in Stage 2, which will feature a separate, similar prize fund.

Additional Opportunities
Winners have the chance to join the Telegram or TON Core teams, or receive support to launch a real TVM sidechain for TON. The best optimization solutions may also be implemented to enhance the TON main network.

TIGRAY TECH 🖥💻

14 Jan, 06:51


Now this

x = True
y = False
z = x or y and not x
print(z)

This is your DCQT test ( Department Of Comment Questions Test )🤣😅

TIGRAY TECH 🖥💻

12 Jan, 17:30


ChatGPT In 2030 😂

TIGRAY TECH 🖥💻

10 Jan, 11:44


.....Pain tho💔😟

TIGRAY TECH 🖥💻

10 Jan, 02:54


What Do You Need Next??

TIGRAY TECH 🖥💻

07 Jan, 04:54


Lesson 5: Making Decisions with if-else 🔄

Now that we know how to take user input, let's make our programs smarter by using if-else conditions! These allow our program to make decisions based on user input or other factors.

---

Example:

age = int(input("How old are you? "))

if age >= 18:
    print("You are an adult!")
else:
    print("You are a minor!")


---

Explanation:

1. if statement: Checks a condition. If it evaluates to True, the indented block runs.
2. else statement: Runs if the if condition is False.
3. Comparison operators (>=, <, ==): Used to compare values.
4. Indentation: Ensures the correct code executes within each block.

---

Task: 
Write a program that asks the user for their favorite number. If the number is greater than 10, print: 
"That's a big number!" 

Otherwise, print: 
"That's a small number!"

---

Example Output:

Enter your favorite number: 12 
That's a big number!


Next Up: 
We’ll learn about loops to repeat actions in your programs! 🚀

TIGRAY TECH 🖥💻

02 Jan, 13:51


Thankyou 40K Subscribers 🔥😐

TIGRAY TECH 🖥💻

02 Jan, 09:41


😏😏 bussiness tip for survival 2025🤣🤗🤗

Credit: .......

TIGRAY TECH 🖥💻

01 Jan, 12:09


😂

TIGRAY TECH 🖥💻

01 Jan, 10:53


Lol 😂

TIGRAY TECH 🖥💻

01 Jan, 09:05


Lesson 4: Taking User Input ✍️

Now, let’s make our program interactive by using the input() function!

Example:
# Taking user input

name = input("What is your name? ")
age = input("How old are you? ")


print("Hello", name + "! You are", age, "years old.")

Explanation:

input() prompts the user for input.

The result is always a string.


Task:
Write a program that asks for your name and favorite hobby, then prints a message like:
"Hi [Name], your favorite hobby is [Hobby]!"

Share your code and output in the group!

Next, we’ll learn about if-else conditions to make decisions in your programs.

❤️ If you’re vibing with posts like this, drop a heart — I’ll keep them coming Stay tuned! 😉

🙂 Must join our Channel @TIGRAYTECHC

TIGRAY TECH 🖥💻

31 Dec, 21:08


Grateful for 2024, ready for 2025.
Here's to growth, love, and new beginnings. 💙

TIGRAY TECH 🖥💻

29 Dec, 10:05


What is it? 🙃

TIGRAY TECH 🖥💻

29 Dec, 05:51


Lesson 3: Variables and Data Types 🐱

In Python, variables are used to store data. Let’s see how it works:

Example:

# This is a variable
name = "John"
age = 25
height = 5.9

print("Name:", name)
print("Age:", age)
print("Height:", height)

Data Types:

String: Text, e.g., "Hello"

Integer: Whole numbers, e.g., 25

Float: Decimal numbers, e.g., 5.9

Boolean: True/False, e.g., True


Task:
Create variables for your name, age, and favorite color, and print them. Share your code and output in the comment!

Next, we’ll learn about input() for user interaction.

❤️ If you’re vibing with posts like this, drop a heart — I’ll keep them coming Stay tuned! 😉

🙂 Must join our Channel @TIGRAYTECHC

TIGRAY TECH 🖥💻

28 Dec, 22:27


Still working try it asap

TIGRAY TECH 🖥💻

26 Dec, 10:25


If you don't have laptop or computer use this android app to run python codes

Pydroid 3 - IDE for Python

TIGRAY TECH 🖥💻

26 Dec, 04:57


Lesson 2: Your First Python Program 🎉

Congrats on setting up Python! Let’s write your first program.

1. Open your IDE or terminal.


2. Type this code:

print("Hello, World!")

3. Run the program to see the output.


Task: Run the program and share a screenshot of your output.

Next, we’ll learn about variables and data types.

❤️ If you’re vibing with posts like this, drop a heart — I’ll keep them coming Stay tuned! 😉

🙂 Must join our Channel @TIGRAYTECHC

TIGRAY TECH 🖥💻

25 Dec, 13:38


W-Coin listing is scheduled for January 25 🐸

TIGRAY TECH 🖥💻

25 Dec, 09:09


Banned???

TIGRAY TECH 🖥💻

25 Dec, 06:53


Lesson 1: Install Python 🐍

1. Download from python.org.


2. Install and check "Add Python to PATH".


3. Verify: Type
python --version in your terminal.


Use VS Code or PyCharm for coding.

Task: Install Python and share a screenshot of your version.

Next, we’ll write your first Python program!


🙂 Must join our Channel @TIGRAYTECHC

❤️ If you’re vibing with posts like this, drop a heart — I’ll keep them coming 💧

TIGRAY TECH 🖥💻

24 Dec, 20:39


Let's start with a python lesson :))

Are you ready to learn with us?

TIGRAY TECH 🖥💻

24 Dec, 20:11


🔵 How to make money on Telegram {Full Guide} 🔤

Read them please 😞😞

TIGRAY TECH 🖥💻

23 Dec, 08:02


Savage ChatGPT 😒😒

TIGRAY TECH 🖥💻

23 Dec, 07:32


The first one has a _gift after it, the second one doesn't, nd
the first one starts for free for one person, the second one doesn't😎

So find any link on social media (x,tg...) got one link and add to it "_gift" behind the link then you can start for free in memhash

If it's work share our link to 5 your friends 😎😎😎

☑️@TIGRAYTECHC