close
Jump to content

Talk:MicroPython

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia

interactive prompt

[edit]

There have been some recent edits, one of which states "The user is presented with an interactive prompt...". I have not actually tried out MicroPython but I suspect it does not only run as a command prompt. Can anyone verify this so the article can be clear? Dbsseven (talk) 21:02, 19 May 2017 (UTC)[reply]

Maybe change it to say "can also be presented" Chiefmanzzz (talk) 05:17, 20 May 2017 (UTC)[reply]

Reading a file example

[edit]

In this code snippet, os is imported and never used, afaik it's not necessary for file access like the snippet is doing

import os

# Open and read a file

with open("/readme.txt") as f:
	print(f.read())

~2026-14138-80 (talk) 02:39, 5 March 2026 (UTC)[reply]