Skip to content

Instantly share code, notes, and snippets.

@paley777
Created June 18, 2022 08:28
Show Gist options
  • Save paley777/a659908414de42580323534611c0957a to your computer and use it in GitHub Desktop.
Save paley777/a659908414de42580323534611c0957a to your computer and use it in GitHub Desktop.
Random Number Python
# Menampilkan Angka Acak antara 0 sampai 20
# Mengimpor Modul Random
import random
# Menampilkan Angka Acak
print(random.randint(0, 20))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment