Python Codes
6.28K 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
Channel created
1. Basic Arithmetic

# Addition
Input :2+1
Output:3

# Subtraction
Input :2-1
Output:1

# Multiplication
Input :2*2
Output:4

# Division
Input :3/2
Output:1.5

# Floor Division
Input :7//4
Output:1

@python_codes