Python Codes Basic to Advance
2.66K subscribers
82 photos
5 videos
8 files
100 links
Python Codes Basic to Advance

All Codes
@C_Codes_pro
@CPP_Codes_pro
@Java_Codes_Pro
@nodejs_codes_pro

Discussion
@bca_mca_btech
Download Telegram
#Table using python of any number
num = int(input("Enter any number: "))
for i in range(1, 11):
print(f"{num} * {i} = {num * i}")


# Join : @python_codes_pro
👍1