python gotoxy getxy 设置/获取控制台坐标

copy
from ctypes import pointer, Structure, windll from ctypes.wintypes import WORD, SHORT, SMALL_RECT import ctypes import os STD_INPUT_HANDLE = -10 STD_OUTPUT_HANDLE = -11 STD_ERROR_HANDLE = -12 class COORD(Structure): _fields_ = [("X", SHORT), ("Y", SHORT)] def __init__(self, x, y): self.X = x self.Y = y class CONSOLE_SCREEN_BUFFER_INFO(Structure): _fields_ = [("dwSize", COORD), ("dwCursorPosition", COORD), ("wAttributes", WORD), ("srWindow", SMALL_RECT), ("dwMaximumWindowSize", COORD)] def gotoxy(x, y): hOut = ctypes.windll.kernel32.GetStdHandle(STD_OUTPUT_HANDLE) ctypes.windll.kernel32.SetConsoleCursorPosition(hOut, COORD(x, y)) def getxy(): csbi = CONSOLE_SCREEN_BUFFER_INFO() hOut = ctypes.windll.kernel32.GetStdHandle(STD_OUTPUT_HANDLE) ctypes.windll.kernel32.GetConsoleScreenBufferInfo(hOut, pointer(csbi)) return csbi.dwCursorPosition.X, csbi.dwCursorPosition.Y os.system('cls') gotoxy(5, 5) print(getxy()) print(getxy())

Effect

注:关于Windows API的信息可以完全在https://docs.microsoft.com/zh-cn/windows中找到

posted @   Wh_Xcjm  阅读(480)  评论(0编辑  收藏  举报
编辑推荐:
· 智能桌面机器人:用.NET IoT库控制舵机并多方法播放表情
· Linux glibc自带哈希表的用例及性能测试
· 深入理解 Mybatis 分库分表执行原理
· 如何打造一个高并发系统?
· .NET Core GC压缩(compact_phase)底层原理浅谈
阅读排行:
· 手把手教你在本地部署DeepSeek R1,搭建web-ui ,建议收藏!
· 新年开篇:在本地部署DeepSeek大模型实现联网增强的AI应用
· Janus Pro:DeepSeek 开源革新,多模态 AI 的未来
· 互联网不景气了那就玩玩嵌入式吧,用纯.NET开发并制作一个智能桌面机器人(三):用.NET IoT库
· 【非技术】说说2024年我都干了些啥
点击右上角即可分享
微信分享提示
💬
评论
📌
收藏
💗
关注
👍
推荐
🚀
回顶
收起