Browse Source

Upload files to 'perintah_linux'

master
bagushehe 5 years ago
parent
commit
d87a19ce85
1 changed files with 41 additions and 0 deletions
  1. +41
    -0
      perintah_linux/aa.py

+ 41
- 0
perintah_linux/aa.py View File

@ -0,0 +1,41 @@
#!/usr/bin/python
import sys
import os
class Unbuffered(object):
def __init__(self, stream):
self.stream = stream
def write(self, data):
self.stream.write(data)
self.stream.flush()
def writelines(self, datas):
self.stream.writelines(datas)
self.stream.flush()
def __getattr__(self, attr):
return getattr(self.stream, attr)
sys.stdout = Unbuffered(sys.stdout)
print" /$$ /$$ /$$$$$$ /$$ /$$$$$$$ /$$ /$$ /$$ /$$"
print" | $$ /$$/ /$$__ $$| $$ | $$__ $$| $$ /$ | $$| $$$ | $$"
print" | $$ /$$/ | $$ \__/| $$ | $$ \ $$| $$ /$$$| $$| $$$$| $$"
print" | $$$$$/ | $$$$$$ | $$ | $$$$$$$/| $$/$$ $$ $$| $$ $$ $$"
print" | $$ $$ \____ $$| $$ | $$____/ | $$$$_ $$$$| $$ $$$$"
print" | $$\ $$ /$$ \ $$| $$ | $$ | $$$/ \ $$$| $$\ $$$"
print" | $$ \ $$| $$$$$$/| $$$$$$$$ | $$ | $$/ \ $$| $$ \ $$"
print" |__/ \__/ \______/ |________/ |__/ |__/ \__/|__/ \__/"
print" Author : Bagus Widhyasmara"
print "<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~>"
print" "
print "clue --> The 3rd answer can be read use indonesian and english language !"
name = raw_input("Masukan nama anda : ")
print("Selamat datang "+name)
while True:
x = raw_input("enter your born place ")
y = input("enter your bornn year ")
z = input("how many letters o on born ? ")
if z == 1:
perlin = raw_input("silahkan ketik perintah linux apapun! ")
os.system(perlin)
exit(0)

Loading…
Cancel
Save