-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcrypto_safety_tips.py
More file actions
54 lines (43 loc) · 1.66 KB
/
Copy pathcrypto_safety_tips.py
File metadata and controls
54 lines (43 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# crypto_safety_tips.py
def crypto_safety_tips():
tips = [
"1. Never share your private key or seed phrase with anyone.",
"2. Always enable two-factor authentication (2FA) on exchanges.",
"3. Use a hardware wallet for long-term storage.",
"4. Double-check wallet addresses before sending funds.",
"5. Avoid accessing your wallet on public Wi-Fi.",
"6. Keep your software and wallets updated regularly.",
"7. Use strong, unique passwords for each crypto account.",
"8. Beware of phishing links and fake websites.",
"9. Only use reputable and well-known exchanges.",
"10. Always backup your seed phrase offline in a safe place."
]
print("===== Crypto Safety Tips =====")
for tip in tips:
print(tip)
print("==============================")
if __name__ == "__main__":
crypto_safety_tips()
```
---
**Step-by-Step Guide on Mobile (GitHub Website):**
**Step 1 — Open GitHub**
Go to [github.com](https://github.com) on your mobile browser and log in.
**Step 2 — Create or Open a Repository**
- Tap the **+** icon at the top right
- Select **New repository**
- Name it `crypto-safety`
- Set it to **Public or Private**
- Tap **Create repository**
**Step 3 — Create the File**
- Inside your new repo, tap **Add file**
- Select **Create new file**
**Step 4 — Name the File**
- In the filename box at the top, type: `crypto_safety_tips.py`
**Step 5 — Paste the Code**
- Tap inside the content area and paste the full script above
**Step 6 — Commit the File**
- Scroll down to the **Commit new file** section
- In the commit message box, type:
```
Add crypto safety tips script