Forwarded from Quietly Community (โฉ แซแ!แดTแชY)
Please open Telegram to view this post
VIEW IN TELEGRAM
๐คฃ20๐ฅ5๐ฅฐ1
TIGRAY TECH ๐ฅ๐ป
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โฆ
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:
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
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!
Please open Telegram to view this post
VIEW IN TELEGRAM
2โค19๐ฅ3๐2๐1
TIGRAY TECH ๐ฅ๐ป
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โฆ
If you don't have laptop or computer use this android app to run python codes
Pydroid 3 - IDE for Python
Pydroid 3 - IDE for Python
๐13๐2๐2๐2๐ฅ1๐1
TIGRAY TECH ๐ฅ๐ป
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โฆ
Still working try it asap
๐ฅ6๐3โค1
TIGRAY TECH ๐ฅ๐ป
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โฆ
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
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
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!
Please open Telegram to view this post
VIEW IN TELEGRAM
โค19๐จโ๐ป4๐2๐ฅ2๐คฉ2
1. Never make enemies while working online.
2. Donโt laugh at someoneโs pain; life is unpredictable, and the same could happen to you.
3. If someone calls or asks for help, assist them in any way you canโexcept for money. Offer free help whenever possible.
4. If you mock someoneโs troubles, life may put you in the same position, and others might laugh at you.
5. Stay humble; avoid showing too much attitude.
2. Donโt laugh at someoneโs pain; life is unpredictable, and the same could happen to you.
3. If someone calls or asks for help, assist them in any way you canโexcept for money. Offer free help whenever possible.
4. If you mock someoneโs troubles, life may put you in the same position, and others might laugh at you.
5. Stay humble; avoid showing too much attitude.
Be kind, helpful, and grounded!
๐19โค11๐ฅฐ5๐1
Forwarded from Quietly Community (โฉ แซแ!แดTแชY)
Grateful for 2024, ready for 2025.
Here's to growth, love, and new beginnings. ๐โจ
Here's to growth, love, and new beginnings. ๐
Please open Telegram to view this post
VIEW IN TELEGRAM
โค7๐2
TIGRAY TECH ๐ฅ๐ป
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:โฆ
Lesson 4: Taking User Input โ๏ธ
Now, letโs make our program interactive by using the input() function!
Example:
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:
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
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
โค11๐5๐ฅ3๐1
Forwarded from Quietly Community (TIGRAY TECH ๐ฅ๐ป)
Please open Telegram to view this post
VIEW IN TELEGRAM
๐13๐ฅ2
Please open Telegram to view this post
VIEW IN TELEGRAM
๐คฃ23๐2
Please open Telegram to view this post
VIEW IN TELEGRAM
๐คฃ21โค4๐3๐ฅ1
Thankyou 40K Subscribers ๐ฅ๐
Please open Telegram to view this post
VIEW IN TELEGRAM
๐ฅ23๐คฃ14๐4๐2๐1
TIGRAY TECH ๐ฅ๐ป
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.")โฆ
Lesson 5: Making Decisions with
Now that we know how to take user input, let's make our programs smarter by using
---
Example:
---
Explanation:
1.
2.
3. Comparison operators (
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:
Next Up:
Weโll learn about loops to repeat actions in your programs! ๐
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! ๐
โค6๐3๐ฅ2๐1
TIGRAY TECH ๐ฅ๐ป
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โฆ
What Do You Need Next??
1๐3๐ค2โค1
Forwarded from Crypto Lessons
Media is too big
VIEW IN TELEGRAM
๐
What is an NFT? (Non-Fungible Tokens Explained)
0:00 - 0:15 Intro
0:16 - 1:00 What is an NFT?
1:01 - 2:24 The Details of all Non Fungible Tokens
2:25 - 5:13 Why buy an NFT?
5:14 - 6:12 Buying Jack Dorsey's First Tweet
6:13 - 6:48 How popular are they?
6:49 - 7:52 Top 11 Most Expensive NFTs
7:53 - 8:44 Can someone copy your NFT?
8:45 - 10:13 How do you buy an NFT?
10:14 - 11:05 Where do you store your NFTs?
What is an NFT? A Non-Fungible Token, also known as a NFT, is a type of digital token or asset. A common analogy is to think of these as digital trading cards or digital paintings. When you buy an NFT, you are buying the rights to that specific asset. In this video you'll learn exactly what a non-fungible token is, and why they are valuable.
0:00 - 0:15 Intro
0:16 - 1:00 What is an NFT?
1:01 - 2:24 The Details of all Non Fungible Tokens
2:25 - 5:13 Why buy an NFT?
5:14 - 6:12 Buying Jack Dorsey's First Tweet
6:13 - 6:48 How popular are they?
6:49 - 7:52 Top 11 Most Expensive NFTs
7:53 - 8:44 Can someone copy your NFT?
8:45 - 10:13 How do you buy an NFT?
10:14 - 11:05 Where do you store your NFTs?
๐ฅ5๐2๐2๐1
This media is not supported in your browser
VIEW IN TELEGRAM
ChatGPT In 2030 ๐
๐คฃ30๐5๐ฅ2๐1
TIGRAY TECH ๐ฅ๐ป
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โฆ
Now this
This is your DCQT test ( Department Of Comment Questions Test )๐คฃ ๐
x = True
y = False
z = x or y and not x
print(z)
This is your DCQT test ( Department Of Comment Questions Test )
Please open Telegram to view this post
VIEW IN TELEGRAM
๐6๐3๐ฅ1
Forwarded from Telegram Contests
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.
Please open Telegram to view this post
VIEW IN TELEGRAM
๐ฅ6๐5๐4๐2