Hey there 👋, I'm Abdulmajid
Total Count | Hours Week |
---|---|
|
|
- 🔭 Working on Backend Development
- 🌱 Learning DjangoRestFramework & more
- 📫 How to contact me: @avengerdev (Telegram)
Total Count | Hours Week |
---|---|
|
|
print("Hello World!")
#Data Types
#String
"Hello"[4]
print("Welcome to the rollercoaster!")
height = int(input("What is your height in cm? "))
if height >= 120:
print("You can ride the rollercoaster!")
import random
randomInteger = random.randint(1, 10)
print(randomInteger)
#For Loop with Lists
fruits = ["Apple", "Peach", "Pear"]
for fruit in fruits:
print(fruit)
print(fruit + " Pie")