Message from Python discussions

December 2018

— !offtopic

— 

HELP, HELP !!!
Hello, pythonists!
Above is a screen(tkinter text widget) in which I insert some text. The text come from an sqlite3 database associated to the program. Each row(line) consists of more than 15 columns, made up of a number(id), fullname, address, email, etc. My challenge is that I want the column that follows the fullname column to start at the index right after the longest name, no matter in which row the name is.
Is there any option of function I can use to do this, I need your help, pease.

— pythonrules

— VM

— See str.ljust and str.rjust

— Sorry i didnt get your point

— Can i pm you ???

— Thank you very much, brother. You have helped me alot, I've fixed it already.

— Hello everyone are there anyone who used python with 3D slicer? I need a plug in that save 3d segmentation? Thank you

Message permanent page

— Hello I have a problem in python
I wanted to install echo bot

— My code

— »»>import config
import telebot

bot = telebot.TeleBot(config.token)

bot.message_handler(content_types=["text"])
def repeat_all_messages(message):
bot.send_message(message.chat.id, message.text)

if name == 'main':
bot.polling(none_stop=True)»»>

Message permanent page