[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/python/python-docs-id/3.14/tutorial/stdlib.po [Back]  [Original]

# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2001 Python Software Foundation
# This file is distributed under the same license as the Python package.
# FIRST AUTHOR , YEAR.
#
# Translators:
# python-doc bot, 2025
# Hengky Kurniawan, 2025
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Python 3.15\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-08-21 14:26+0000\n"
"PO-Revision-Date: 2025-09-16 00:02+0000\n"
"Last-Translator: Hengky Kurniawan, 2025\n"
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"
"id/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: id\n"
"Plural-Forms: nplurals=1; plural=0;\n"

msgid "Brief tour of the standard library"
msgstr ""

msgid "Operating system interface"
msgstr ""

msgid ""
"The :mod:`os` module provides dozens of functions for interacting with the "
"operating system::"
msgstr ""
"Modul :mod:`os` menyediakan puluhan fungsi untuk berinteraksi dengan sistem "
"operasi::"

msgid ""
">>> import os\n"
">>> os.getcwd()      # Return the current working directory\n"
"'C:\\\\Python315'\n"
">>> os.chdir('/server/accesslogs')   # Change current working directory\n"
">>> os.system('mkdir today')   # Run the command mkdir in the system shell\n"
"0"
msgstr ""

msgid ""
"Be sure to use the ``import os`` style instead of ``from os import *``.  "
"This will keep :func:`os.open` from shadowing the built-in :func:`open` "
"function which operates much differently."
msgstr ""
"Pastikan untuk menggunakan gaya ``import os`` alih-alih ``from os import "
"*``. Ini akan menjaga :func:`os.open` dari membayangi *shadowing* fungsi "
"bawaan :func:`open` yang beroperasi jauh berbeda."

msgid ""
"The built-in :func:`dir` and :func:`help` functions are useful as "
"interactive aids for working with large modules like :mod:`os`::"
msgstr ""
"Fungsi bawaan :func:`dir` dan :func:`help` berguna sebagai alat bantu "
"interaktif untuk bekerja dengan modul besar seperti :mod:`os`::"

msgid ""
">>> import os\n"
">>> dir(os)\n"
"\n"
">>> help(os)\n"
"

Web Proxy Viewer  |  New URL  |  Original Page