Python Coding
7.45K subscribers
1.52K photos
4 videos
49 files
1.39K links
Learn Python to automate your things. We are here to support you. Ask your question

Reach us - info@clcoding.com

https://whatsapp.com/channel/0029Va5BbiT9xVJXygonSX0G
Download Telegram
Guess Your favorite color
Print Binary Numbers
#clcoding
#Convert into HEX
print('{:X}'.format(199))
#Convert into OCT
print('{:o}'.format(199))
#Convert into Binary
print('{:b}'.format(199))
#Convert into Grey
print('{:g}'.format(199))
Please check this page clcoding.quora.com for more code and questions
clcoding.quora.com reached 1 Million View
Forwarded from MATLAB Coding | matlabcoding.com (Techincal)
#clcoding
import turtle

t = turtle.Turtle()
t.speed(20)
a = ["violet","indigo","blue","green","yellow","orange","red"]

for i in range(50):
k = i%7
t.color(a[k])
t.circle(120)
t.right(10)