Python learning
26.9K subscribers
209 photos
8 videos
75 files
118 links
Learn pythonπŸ”₯
Quality content πŸ˜‰
Get Python Course 😁
Download Telegram
Output of this Quiz πŸ‘‡

>>> print(int("12.0")*2)
Anonymous Quiz
36%
24
37%
Error
27%
24.0
😒34πŸ‘28πŸ‘6πŸ€”4
This media is not supported in your browser
VIEW IN TELEGRAM
Bring back childhood memories😍. Tertis game using python. Source code πŸ‘‡πŸ‘‡
πŸ‘11🀩4πŸ‘3❀2πŸ”₯1
πŸ€”16😁12πŸ‘9πŸ”₯5
πŸ‘15πŸ”₯10πŸ‘5πŸ€”2
Run this code and send me output
πŸ‘8😁3
Which of the following character is
used to give single-line comments in
Python?
Anonymous Quiz
20%
//
67%
#
3%
!
10%
/*
πŸ‘18😁5❀3πŸ‘1
import turtle
a=turtle.Turtle()
a.getscreen().bgcolor("black")
a.penup()
a.goto(-200, 100)
a.pendown()
a.color("yellow")
a.speed(25)
def star(turtle, size):
if size<=10:
return
else:
turtle.begin_fill()
for i in range (5):
turtle.pensize(2)
turtle.forward(size)
star(turtle, size/3)
turtle.left(216)
turtle.end_fill()
star(a, 360)
turtle.done()
πŸ‘33❀9
Which collection does not allow
duplicate members?
Anonymous Quiz
47%
Tuple
43%
Set
10%
List
πŸ‘16πŸ‘1
PythonProgrammingExercisesGentlyExplained.pdf
1.5 MB
Python Programming Exercises, 2022., gently explained
42 programming exercises on 160 pages with plain-English explanations


Exercise #1: Hello, World!
Exercise #2: Temperature Conversio
Exercise #3: Odd & Even
Exercise #4: Area & Volume
Exercise #5: Fizz Buzz
Exercise #6: Ordinal Suffix
Exercise #7: ASCII Table
Exercise #8: Read Write File
Exercise #9: Chess Square Color
Exercise #10: Find and Replace
Exercise #11: Hours, Minutes, Seconds
Exercise #12: Smallest & Biggest
Exercise #13: Sum & Product
Exercise #14: Average
Exercise #15: Median
Exercise #16: Mode
Exercise #17: Dice Roll
Exercise #18: Buy 8 Get 1 Free
Exercise #19: Password Generator
Exercise #20: Leap Year
And many more
πŸ‘34πŸ₯°9πŸ”₯4
How to Become Better in 2023πŸ™ŒπŸ»πŸ™ŒπŸ»πŸ™ŒπŸ»πŸ™ŒπŸ»
πŸ‘56❀19πŸ”₯14😁5πŸ€”1🀯1🀩1
This media is not supported in your browser
VIEW IN TELEGRAM
Bring back childhood memories😍. Tertis game using python. Source code πŸ‘‡πŸ‘‡
πŸ‘13❀6
Wrote an article If You are a beginner and looking for your first programming languages πŸ€”

https://inprogrammer.com/which-programming-language-should-i-learn-first-as-a-beginner/
πŸ‘4😁1
πŸ‘34😒11🀯10❀6πŸ”₯5πŸ‘5😁3πŸ₯°1
πŸ‘12😱4❀3