1 230
Підписники
Немає даних24 години
Немає даних7 днів
Немає даних30 днів
Триває завантаження даних...
Схожі канали
Хмара тегів
Немає даних
Виникли проблеми? Будь ласка, оновіть сторінку або зверніться до нашого support-менеджера.
Вхідні та вихідні згадування
---
---
---
---
---
---
Залучення підписників
травень '24
травень '240
в 0 каналах
квітень '240
в 0 каналах
Get PRO
березень '24
+2
в 0 каналах
Get PRO
лютий '24
+4
в 0 каналах
Get PRO
січень '24
+16
в 0 каналах
Get PRO
грудень '23
+10
в 0 каналах
Get PRO
листопад '23
+9
в 0 каналах
Get PRO
жовтень '23
+18
в 0 каналах
Get PRO
вересень '23
+145
в 0 каналах
Get PRO
серпень '23
+1 726
в 0 каналах
| Дата | Залучення підписників | Згадування | Канали | |
| 10 травня | 0 | |||
| 09 травня | 0 | |||
| 08 травня | 0 | |||
| 07 травня | 0 | |||
| 06 травня | 0 | |||
| 05 травня | 0 | |||
| 04 травня | 0 | |||
| 03 травня | 0 | |||
| 02 травня | 0 | |||
| 01 травня | 0 |
Дописи каналу
| 2 | Choose the correct option ✅ | 282 |
| 3 | Немає тексту... | 217 |
| 4 | Click here 👉 https://pythonsites.com/online-guest-reservation-system-using-java/#more-865 | 251 |
| 5 | Which of the following approach is used bu C++ ? | 378 |
| 6 | Code 👇👇
import turtle as tur
import colorsys as cs
tur.setup(800,800)
tur.speed(0)
tur.width(2)
tur.bgcolor("black")
for j in range(25):
for i in range(15):
tur.color(cs.hsv_to_rgb(i/15,j/25,1))
tur.right(90)
tur.circle(200-j*4,90)
tur.left(90)
tur.circle(200-j*4,90)
tur.right(180)
tur.circle(50,24)
tur.hideturtle()
tur.done() | 383 |
| 7 | Choose the correct option ✅ | 347 |
| 8 | Немає тексту... | 352 |
| 9 | What is the value of the following expression? | 344 |
| 10 | Немає тексту... | 616 |
| 11 | pikachuu (1) (1).py | 504 |
| 12 | WiFi Passwords Source Code python.coder_.py | 518 |
| 13 | How would you create a tuple in Python? | 529 |
| 14 | Python Project To-Do LIST APPLICATION 👉 https://pythonsites.com/python-projects-with-source-code-to-do-list-application/#more-810 | 524 |
| 15 | Code 👇👇
import turtle as tur
import colorsys as cs
tur.setup(800,800)
tur.speed(0)
tur.width(2)
tur.bgcolor("black")
for j in range(25):
for i in range(15):
tur.color(cs.hsv_to_rgb(i/15,j/25,1))
tur.right(90)
tur.circle(200-j*4,90)
tur.left(90)
tur.circle(200-j*4,90)
tur.right(180)
tur.circle(50,24)
tur.hideturtle()
tur.done() | 753 |
| 16 | Run this code | 628 |
| 17 | from turtle import *
import turtle
turtle.bgcolor('black')
turtle.pencolor('red')
turtle.hideturtle()
turtle.speed()
#curve01
def curve01(a,d):
for i in range(d):
turtle.right(a)
turtle.forward(1)
#making eye
turtle.width(15)
turtle.penup()
turtle.right(90)
turtle.forward(85)
turtle.left(90)
turtle.forward(35)
turtle.pendown()
turtle.fillcolor('white')
turtle.begin_fill()
turtle.left(55)
curve01(0.09,100)
curve01(0.2,100)
turtle.forward(70)
turtle.right(90)
curve01(0.5,100)
curve01(00,30)
curve01(0.3,50)
curve01(0.6,50)
turtle.forward(50)
turtle.right(47)
curve01(0.1,95)
turtle.end_fill()
#changing
turtle.penup()
turtle.left(36)
turtle.forward(70)
turtle.pendown()
#curve02
def curve02(a,d):
for i in range(d):
turtle.left(a)
turtle.forward(1)
#second eye
turtle.fillcolor('white')
turtle.begin_fill()
turtle.right(55)
curve02(0.09,100)
curve02(0.2,100)
turtle.forward(70)
turtle.left(90)
curve02(0.5,100)
curve02(00,30)
curve02(0.3,50)
curve02(0.6,50)
turtle.forward(50)
turtle.left(47)
curve02(0.1,95)
turtle.end_fill()
turtle.penup()
turtle.width(0)
turtle.right(49)
turtle.forward(30)
turtle.left(102) #100.40
turtle.forward(145)
turtle.pencolor('red')
#making left face
turtle.fillcolor('red')
turtle.begin_fill()
turtle.speed()
turtle.pendown()
turtle.left(90)
curve01(5,20)
turtle.left(175)
turtle.forward(50)
turtle.left(25)
turtle.forward(28)
turtle.right(160)
turtle.forward(170)
curve02(0.2,65)
turtle.right(60)
curve01(0.1,140)
curve01(0.5,50)
turtle.left(180)
curve02(0.2,150)
curve02(0.1,95)
turtle.left(127)
turtle.forward(5)
curve01(2,20)
turtle.right(30)
turtle.forward(90)
turtle.right(7)
turtle.forward(75)
turtle.right(160)
turtle.forward(100)
curve02(0.1,105)
turtle.right(70)
curve01(0.2,200)
curve01(0.3,70)
turtle.left(175)
curve02(0.2,150)
curve02(0.3,150)
turtle.forward(20)
turtle.left(65)
curve01(0.1,120)
curve01(0.010,105)
turtle.right(10)
curve01(0.2,110)
turtle.right(60)
curve01(0.3,138)
turtle.right(30)
curve01(0.2,160)
turtle.left(150)
curve02(0.2,100)
curve02(0.1,150)
turtle.forward(70)
curve02(0.4,40)
turtle.left(160)
curve01(0.1,60)
turtle.left(7)
curve01(0.1,120)
curve01(0.2,30)
turtle.forward(20)
turtle.right(140)
curve02(0.2,40)
turtle.right(50)
curve02(0.2,70)
turtle.right(8)
curve02(0.1,70)
curve02(0.5,50)
turtle.left(153)
curve01(0.1,170)
turtle.right(81)
curve02(0.2,20)
turtle.right(3)
curve02(0.1,62)
turtle.right(153) #..
curve01(0.1,63)
turtle.left(50)
curve02(0.1,175)
turtle.left(60)
turtle.forward(7)
turtle.end_fill()
#going to replicate
turtle.left(92.15)
turtle.penup()
turtle.forward(417)
turtle.pendown()
turtle.fillcolor('red')
turtle.begin_fill()
#right face
turtle.right(90)
curve02(5,20)
turtle.right(175)
turtle.forward(50)
turtle.right(25)
turtle.forward(28)
turtle.left(160)
turtle.forward(170)
curve01(0.2,65)
turtle.left(60)
curve02(0.1,140)
curve02(0.5,50)
turtle.right(180)
curve01(0.2,150)
curve01(0.1,95)
turtle.right(127)
turtle.forward(5)
curve02(2,20)
turtle.left(30)
turtle.forward(90)
turtle.left(7)
turtle.forward(75)
turtle.left(160)
turtle.forward(100)
curve01(0.1,105)
turtle.left(70)
curve02(0.2,200)
curve02(0.3,70)
turtle.right(175)
curve01(0.2,150)
curve01(0.3,150)
turtle.forward(20)
turtle.right(65)
curve02(0.1,120)
curve02(0.010,105)
turtle.left(10)
curve02(0.2,110)
turtle.left(60)
curve02(0.3,138)
turtle.left(30)
curve02(0.2,160)
turtle.right(150)
curve01(0.2,100)
curve01(0.1,150)
turtle.forward(70)
curve01(0.4,40)
turtle.right(160)
curve02(0.1,60)
turtle.right(7)
curve02(0.1,120)
curve02(0.2,30)
turtle.forward(20)
turtle.left(140)
curve01(0.2,40)
turtle.left(50)
curve01(0.2,70)
turtle.left(8)
curve01(0.1,70)
curve01(0.5,50)
turtle.right(153)
curve02(0.1,170)
turtle.left(81)
curve01(0.2,20)
turtle.left(3)
curve01(0.1,62)
turtle.left(153) #..
curve02(0.1,63)
turtle.right(50)
curve01(0.1,100) #0.1
turtle.forward(75)
turtle.right(75)
turtle.forward(2)
turtle.end_fill()
turtle.done() | 617 |
| 18 | 🚀Top 12 websites for remote work opportunities
⚡️ Pangian - https://pangian.com
⚡️ WeWorkRemotely - https://lnkd.in/gU4Ux_xW
⚡️ ARC - https://arc.dev
⚡️RemoteLeaf - https://remoteleaf.com/
⚡️ ZipRecuriter -https://lnkd.in/dYpCQU8P
⚡️ Indeed - https://in.indeed.com/m/
⚡️ Remotive - https://remotive.com
⚡️ JustRemote - https://justremote.co/
⚡️ AngelList - https://angel.co/
⚡️ Jobspresso - https://jobspresso.co/
⚡️ DailyRemote - https://dailyremote.com
⚡️ Working Nomads - https://lnkd.in/geSbdqVG
🚀Top 10 websites for freelance/part-time jobs ⏳
⚡️ Freelance - https://www.freelance.com
⚡️ Guru - https://www.guru.com/
⚡️ Upwork - https://www.upwork.com/
⚡️ LinkedIn - http://www.linkedin.com/
⚡️ Snagajob - https://www.snagajob.com/
⚡️ LinkedIn - http://www.linkedin.com/
⚡️ Solid Gigs - https://solidgigs.com
⚡️ ServiceScape - https://lnkd.in/guR5EV_z
⚡️ Craigslist - http://www.craigslist.org/
⚡️ CoolWorks - https://www.coolworks.co
⚡️ Fiverr - https://www.fiverr.com/
⚡️ Contena - https://www.contena.co | 474 |
| 19 | Python Interview Questions for Freshers🧠👨💻
1. What is Python?
Python is a high-level, interpreted, general-purpose programming language. Being a general-purpose language, it can be used to build almost any type of application with the right tools/libraries. Additionally, python supports objects, modules, threads, exception-handling, and automatic memory management which help in modeling real-world problems and building applications to solve these problems.
2. What are the benefits of using Python?
Python is a general-purpose programming language that has a simple, easy-to-learn syntax that emphasizes readability and therefore reduces the cost of program maintenance. Moreover, the language is capable of scripting, is completely open-source, and supports third-party packages encouraging modularity and code reuse.
Its high-level data structures, combined with dynamic typing and dynamic binding, attract a huge community of developers for Rapid Application Development and deployment.
3. What is a dynamically typed language?
Before we understand a dynamically typed language, we should learn about what typing is. Typing refers to type-checking in programming languages. In a strongly-typed language, such as Python, "1" + 2 will result in a type error since these languages don't allow for "type-coercion" (implicit conversion of data types). On the other hand, a weakly-typed language, such as Javascript, will simply output "12" as result.
Type-checking can be done at two stages -
Static - Data Types are checked before execution.
Dynamic - Data Types are checked during execution.
Python is an interpreted language, executes each statement line by line and thus type-checking is done on the fly, during execution. Hence, Python is a Dynamically Typed Language.
4. What is an Interpreted language?
An Interpreted language executes its statements line by line. Languages such as Python, Javascript, R, PHP, and Ruby are prime examples of Interpreted languages. Programs written in an interpreted language runs directly from the source code, with no intermediary compilation step.
5. What is PEP 8 and why is it important?
PEP stands for Python Enhancement Proposal. A PEP is an official design document providing information to the Python community, or describing a new feature for Python or its processes. PEP 8 is especially important since it documents the style guidelines for Python Code. Apparently contributing to the Python open-source community requires you to follow these style guidelines sincerely and strictly.
6. What is Scope in Python?
Every object in Python functions within a scope. A scope is a block of code where an object in Python remains relevant. Namespaces uniquely identify all the objects inside a program. However, these namespaces also have a scope defined for them where you could use their objects without any prefix. A few examples of scope created during code execution in Python are as follows:
A local scope refers to the local objects available in the current function.
A global scope refers to the objects available throughout the code execution since their inception.
A module-level scope refers to the global objects of the current module accessible in the program.
An outermost scope refers to all the built-in names callable in the program. The objects in this scope are searched last to find the name referenced.
Note: Local scope objects can be synced with global scope objects using keywords such as global. | 466 |
