Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

Python getting content from xl range

from openpyxl import load_workbook

wb = load_workbook(r"C:Usersl470DownloadsTelegram Desktop	ranslated1446186995.xlsx")
ws = wb.active

need_trans = ws['C14':'C174']
for cell_tuple in need_trans:
    for cell in cell_tuple:
        print(cell.value)
Comment

PREVIOUS NEXT
Code Example
Python ::  
::  
::  
Python :: read stdn puthon 3 
:: Command to import the Schema interface from voluptuous 
::  
::  
Python ::  
Python :: unique character 01 
::  
Python :: passing list vs int in python important 
Python ::  
Python ::  
::  
Python ::  
::  
::  
Python ::  
::  
::  
:: maximaze window in tkinter 
::  
:: Program to illustrate the use of nested if statement Average in python Grade =80 and above A =70 and <80 B =60 and <70 C =50 and <60 D Otherwise 
::  
::  
::  
::  
::  
::  
Python :: HTML not being displayed properly in Flask, Python 
ADD CONTENT
Topic
Content
Source link
Name
7+1 =