Posts

Showing posts with the label IT Telkom Purwokerto

E-Learning Prefessional Ethics

Dear Students, for today lesson, you will be learn outside the classroom. As a matter of fact, I have alradey explained that for "Etika Profesi" we will get Big Project that must you present at session thirteen and fourteen. Here is the rule of your 'Big Project' : Each Group can use the previous group. Each group must choose the topic that related to Social Life (For Example : I find there is a 'GojeK Driver in Purwokerto who is still university student of Muhammadiyah University of Purwokerto' Then I Observ to his house, I interview him and also there must be one of your friends who take the Video. The Video must be at least 15 minutes. You have to assume who are procuder, director, etc. Each group must choose unique topics (there is no the same topics; for the Group which used the same topics will be scored E). No Plagiarism form abother class or group that have same class of 'Etika Profesi' or Professional Ethics. Presentation will be at mee...

Create Classes at Python

Image
Dear All, Today, I discuss about Class in Python. in Object Oriented Programming (OOP) we must have known some OOP Concepts such as Inheritance, Polymorhism, Overloading, and of course basic concept using Class and Object. At this ocassion, I would to share to make simple Class in Python for Aritmethics such as how to count largenes from the rectangle. Oke, let's practice, please open your Python IDLE and type code bellow : >>>class Segiempat:       def __init__(self, p, l):          self.panjang = p          self.lebar = l      def luas(self):          return self.panjang * self.lebar      def keliling(self):          return 2 * (self.panjang + self.lebar)  Oke, on the  source code above ; we create class named Se giempat and we also create some functions ( init, fucntion of luas and ...

List and Scoring Case Study - Online Class

Image
Dear All. pada sesi ini, silahkan anda cobakan kode berikut ini (langsung coding di Laptop anda masing-masing) tuliskan kode berikut di text editor (e.g. Notepad, Notepad++, etc). selanjutnya jalankan di Command Front untuk menjalankan Program Python tersebut : data_a = [     ['101','Irsyad',85,79],     ['102','Rahmat',90,82],     ['103','Beni',75,60],     ['104','Beno',60,50],     ['105','Chandra',40,45],     ['106','Deni',65,50],     ['107','Diki',70,75],     ['108','Ega',35,40],     ['109','Farah',90,85] ] def cetaknilai(data):     # mendefinisikan fungsi lokal     def hitungnilai(uts,uas):         return(0.4 * uts) + (0.6 * uas)     # mendefinisikan fungsi lokal     def ambilindeks(nilai):          ...