Edge Rewrite
// HTMLRewriter · presentation

This page was redesigned at the edge.

Cloudflare fetched the original article and streamed it through HTMLRewriter to apply an entirely new visual system without rebuilding the source page.

Jump to content

Talk:MicroPython

Page contents not supported in other languages.
Add topic
From Wikipedia, the free encyclopedia
Latest comment: 4 months ago by ~2026-14138-80 in topic Reading a file example

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