Python Codes
6.27K subscribers
51 photos
1 file
86 links
This channel will serve you all the codes and programs which are related to Python.

We post the codes from the beginner level to advanced level.
Download Telegram
# ASCII
p=ord("A")
q=ord('a')
print(p,q)

output: 65 97

@python_codes
from turtle import *
color('red', 'green')
begin_fill()
while True:
forward(200)
left(170)
if abs(pos()) < 1:
break
end_fill()
done()

@python_codes
AI_ML.pdf
324.4 KB
What is the difference between Artificial Intelligence and Machine Learning ?