Python programming codes
43 subscribers
25 photos
1 video
83 files
82 links
Uploading All programming codes are updating Daily
ask doubts in comment box 🎁☑️
Download Telegram
PythonHub:
Drawing Beautiful Design Using Python
👇👇

# Defined function
from turtle import *
import turtle as t

def my_turtle():
    # Choices
    sides = str(3)
    loops = str(450)
    pen = 1
    # Loop
    for i in range(int(loops)):
        forward(i * 2/int(sides) + i)
        left(360/int(sides) + .350)
        hideturtle()
        pensize(pen)
        speed(30)
        left(90)


my_turtle()
t.done()
Drawing Beautiful Design Using Python
👇👇

from turtle import *
import turtle as t

def my_turtle():
    # Choices
    sides = str(3)
    loops = str(450)
    pen = 1
    for i in range(int(loops)):
        forward(i * 2/int(sides) + i)
        left(360/int(sides) + .350)
        hideturtle()
        pensize(pen)
        speed(30)

my_turtle()
t.done()
Microsoft Excel Shortcuts A to Z, to maximize your productivity (bookmark these for later):

CTRL + A ➡️ Select All

CTRL + B ➡️ Toggle BOLD (font)

CTRL + C ➡️ Copy

CTRL + D ➡️ Fill Down

CTRL + E ➡️ Flash Fill

CTRL + F ➡️ Find

CTRL + G ➡️ Go To

CTRL + H ➡️ Find and Replace

CTRL + I ➡️ Toggle Italic (font)

CTRL + J ➡️ Input line break (in Find and Replace)

CTRL + K ➡️ Insert Hyperlink

CTRL + L ➡️ Insert Excel Table

CTRL + M ➡️ Not Assigned

CTRL + N ➡️ New Workbook

CTRL + O ➡️ Open

CTRL + P ➡️ Print

CTRL + Q ➡️ Quick Analysis

CTRL + R ➡️ Fill Right

CTRL + S ➡️ Save

CTRL + T ➡️ Insert Excel Table

CTRL + U ➡️ Toggle underline (font)

CTRL + V ➡️ Paste (when something is cut/copied)

CTRL + W ➡️ Close the current workbook

CTRL + X ➡️ Cut

CTRL + Y ➡️ Redo (Repeat last action)

CTRL + Z ➡️ Undo
Forwarded from SMW Services
🔺PYTHON🔺INTERVIEW SERIES (PART-1).pdf
741.9 KB
Share 🔺PYTHON🔺INTERVIEW SERIES (PART-1).pdf
Forwarded from SMW Services
800+ SQL Server Interview Questions and Answers .pdf
1 MB
800+ SQL Server Interview Questions and Answers .pdf
Forwarded from SMW Services
SHORTCUTS in Excel 📈.pdf
2.1 MB
SHORTCUTS in Excel 📈.pdf
10 AI tools you cannot miss in 2023:

1. Writing ➝ Textblaze.me/ai

2. Logo ➝ AppIcons.ai

3. Design ➝ StockImg.ai

4. Code ➝ TelePortHQ.io

5. Video ➝ Elai.io

6. Images ➝ Midjourney.com

7. Slides ➝ Sendsteps.com

8. Emails ➝ Remail.ai

9. Website ➝ Hocoos.com

10. Meeting ➝ Otter.ai
Python programming codes pinned «700+ Python MCQ Question and Answers 1. Python Basic MCQ 2. Python Module MCQ 3. String Formatting in Python 4. Python Generators MCQ 5. Python Variable MCQ 6. Python Data Types 7. Python Operator MCQ 8. Python List MCQ 9. Python Tuple MCQ 10. Python…»
Forwarded from SMW Services
SQL INTERVIEW QUESTION & ANSWERS.pdf
2.5 MB
SQL INTERVIEW QUESTION & ANSWERS (1).pdf
Useful Web Development Resources

So here are the resources you need for web development
and these are free resources!!!

Rolayty free Images and videos

1. Unsplash - unsplash.com
2. Pexels - pexels.com
3. Pixabay - pixabay.com
4. Coverr - coverr.co
5. PNG-EGG- www.pngegg.com
-----------------------------
Hosting and Deployment

1. Netlify - netlify.com
2. Heroku - heroku.com
------------------------------
Icons & Fonts

1. Flaticon flaticon.com
2. Icons8 icons8.com
3. Fontawesome fontawesome.com
4. Google Fonts fonts.google.com
------------------------------
Learning

1. FreeCodeCamp freecodecamp.org
2. The Odin Project www.theodinproject.com
3. Mem dev mem.dev

------------------------
Mockup and UI Tools

1. Figma - figma.com
2. Zeplin - zeplin.com

-----------------------
Project design ideas

1. Awwards - awwwards.com
2. Dribble - dribble.com
Is Python case sensitive when dealing with identifiers?
Anonymous Quiz
40%
a) yes
20%
b) no
40%
c) machine dependent
0%
d) none of the mentioned
What is the maximum possible length of an identifier?
Anonymous Quiz
17%
a) 31 characters
17%
b) 63 characters
50%
c) 79 characters
17%
d) none of the mentioned