scrimba
Python 101 in Bangla
33. For loops - Exercise
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

33. For loops - Exercise
AboutCommentsNotes
33. For loops - Exercise
Expand for more info
index.py
run
preview
console
names = ['hasan minhaj','Sujon ghosh','abul kashem']
names1 = ['zarif Talukder', 'JENNY', 'ahmed mostafa']

# add names1 is names list
# take 2 more input in names list
# print all names with a message invitation to a party
# make sure all the names are in capital form
#hints : you will need two for loops
Console
"['hasan minhaj', 'Sujon ghosh', 'abul kashem', 'zarif Talukder', 'JENNY', 'ahmed mostafa'] "
,
/index.html
-3:45