SortedCoding
1.2K subscribers
185 photos
38 videos
194 files
140 links
Learn to code with clarity and precision
Download Telegram
Rose 🌹
❀1
πŸ”₯1
import turtle

t = turtle.Turtle()
t.speed(10)

for i in range(500):
t.forward(i)
t.left(50)
t.fillcolor('red')

turtle.done()
❀1
If this poll gets 300 'Yes' votes, I'll share a Full Stack Developer roadmap with 5 English and 5 Hindi playlists to learn everything for free! So why wait? Tap on 'Yes' now! πŸš€βœ¨
Anonymous Poll
95%
Yes!
5%
No
Download Source Code πŸ‘‡
Watch the video on YouTube πŸ‘‡

https://youtu.be/HS2BBN2Goo0
πŸ”₯1
πŸ‘Ž1πŸ”₯1
Car animation.zip
1.8 KB
πŸ”₯2
New ProjectπŸ”₯πŸ”₯
πŸ”₯1
This media is not supported in your browser
VIEW IN TELEGRAM
Car animation using HTML CSS πŸ’œπŸ’«
πŸ”₯2❀1
Which of the following type is provided by C++ but not C?
Anonymous Quiz
42%
double
14%
float
6%
int
38%
bool
--- Do you like me Source Code ---


import tkinter as tk
import random

def show_popup():
    popup = tk.Toplevel(root)
    popup.title("Popup")
    label = tk.Label(popup, text="Thanks for Accepting")
    label.pack(padx=20, pady=20)

def move_button(event):
    x = random.randint(0, 350)
    y = random.randint(0, 350)
    no_button.place(x=x, y=y)

root = tk.Tk()
root.title("instagram: @sortedcoding")
root.geometry("400x400")

question_label = tk.Label(root, text="Do you like me?")
question_label.pack(pady=20)

yes_button = tk.Button(root, text="Yes", command=show_popup)
yes_button.pack()

no_button = tk.Button(root, text="No")
no_button.pack()

no_button.bind("<Enter>", move_button)

root.mainloop()
πŸ‘2
πŸ‘2
🌟 10K Strong! 🌟

Wow, what a journey this has been! To each and every one of you who has followed, supported, liked, commented, and been a part of this growing communityβ€”THANK YOU from the bottom of my heart! πŸ’–

When I started this page, I could never have imagined reaching 10,000 incredible people. Each one of you has made this space feel more like a family, and your support fuels my passion every single day.

I’m beyond grateful for the love and encouragement you've shown, and I promise to keep creating content that inspires, educates, and adds value to your life.

Here’s to many more milestones together! πŸš€

Stay tuned for exciting new content, and let’s keep building something amazing!
❀1
πŸ”₯ Save Your time with these Shortcuts πŸ”₯

Ctrl + A - Select All
Ctrl + B - Bold
Ctrl + C - Copy
Ctrl + D - Fill
Ctrl + F - Find
Ctrl + G - Find next instance of text
Ctrl + H - Replace
Ctrl + I - Italic
Ctrl + K - Insert a hyperlink
Ctrl + N - New workbook
Ctrl + O - Open
Ctrl + P - Print
Ctrl + R - Nothing right
Ctrl + S - Save
Ctrl + U - Underlined
Ctrl + V - Paste
Ctrl W - Close
Ctrl + X - Cut
Ctrl + Y - Repeat
Ctrl + Z - Cancel
F1 - Help
F2 - Edition
F3 - Paste the name
F4 - Repeat the last action
F5 - Goto
F6 - Next Pane
F7 - Spell Check
F8 - Extension of the mode
F9 - Recalculate all workbooks
F10 - Activate Menubar
F11 - New graph
F12 - Save As
Shift + F1 - What is it?
Shift + F2 - Edit cell comment
Shift + F3 - Paste the function into the formula
Shift + F4 - Search Next
Shift + F5 - Find
Shift + F6 - Previous Panel
Shift + F8 - Add to the selection
Shift + F9 - Calculate the active worksheet
Shift + F10 - Popup menu display
Shift + F11 - New spreadsheet
Shift + F12 - Save
Ctrl + F3 - Set name
Ctrl + F4 - Close
Ctrl + F5 - XL, size of the restore window
Ctrl + F6 - Next Workbook Window
Shift + Ctrl + F6 - Previous Workbook Window
Ctrl + F7 - Move window
Ctrl + F8 - Resize Window
Ctrl + F9 - Minimize the workbook
Ctrl + F10 - Maximize or Restore Window
Ctrl + F11 - Inset 4.0 Macro sheet
Ctrl + F1 - Open File
Alt + F1 - Insert a graph
Alt + F2 - Save As
Alt + F4 - Output
Alt + F8 - Macro dialog
πŸ‘3