Skip to content

Instantly share code, notes, and snippets.

View KoreanwithStudio's full-sized avatar

KoreanWithGames KoreanwithStudio

View GitHub Profile
@KoreanwithStudio
KoreanwithStudio / Nano_Python ver.1.0.00_Kor.py
Created November 16, 2025 03:17
Nano_Python ver.1.00.0 Kor
print("나노_파이썬 명령어 목록을 보려면 --help를 입력하세요.")
while True:
a = input("NANO_Python/>")
if a == "cls":
os.system('cls' if os.name == 'nt' else 'clear')
continue
if a == "--ver":
print("나노_파이썬 버전 1.0.0")
elif a == "--help":
print("사용 가능한 명령어: --ver, --help, P, math, vars, time, exit")
import time
import os
print("Nano_Python" \
" Type --help for a list of commands.")
while True:
a = input("NANO_Python/>")
if a == "cls":
os.system('cls' if os.name == 'nt' else 'clear')