Difference between revisions of "Belajar 1 : Dasar-dasar Phyton"

From ccitonlinewiki
Jump to: navigation, search
Line 2: Line 2:
  
 
'''Jenis-jenis Input'''
 
'''Jenis-jenis Input'''
 +
 +
----
  
 
'''1. Variabel'''
 
'''1. Variabel'''
  
 
variable represents a value of a given type stored in a fixed memory location. The value may be changed, but not the type. This is not so in Python, where variables are typed dynamically.
 
variable represents a value of a given type stored in a fixed memory location. The value may be changed, but not the type. This is not so in Python, where variables are typed dynamically.

Revision as of 23:43, 16 September 2019

Setelah sedikit belajar di kuliah 2 pada 11 September 2019, saya mengetahui adanya beberapa jenis input atau masukan yang digunakan di bahasa pemrogaman phyton. Jenis jenis input itu adalah Varibel, String, dan list. Kemudian selain input, seperti bahasa pemrogaman lain, phyton juga memiliki operasi kuantitaif seperti penjumlahan, perkalian, dan sebagainya.

Jenis-jenis Input


1. Variabel

variable represents a value of a given type stored in a fixed memory location. The value may be changed, but not the type. This is not so in Python, where variables are typed dynamically.