
AdemolaCode (Mr. Indelible)
@TinnyThrill
Followers
285
Following
3K
Media
245
Statuses
7K
Python 🐍 Flask developer | founder Holacakes app | Devpost | https://t.co/H9FQP9GXFz |
Nigeria
Joined May 2011
HTML for beginners tutorial. Thread The the link below treat HTML tags, building blocks and some key elements required to know when working with html. https://t.co/G9dY0MUd8O
1
2
6
First, Solve the problem. Then, write the code. #learnpython #python #pythonprogramming #AdemolacodeMrIndelibel
0
0
0
It's not a bug; it's an undocumented feature. #learnpython #python #pythonprogramming #AdemolacodeMrIndelibel
0
0
0
Coding is like poetry should be short and concise. #learnpython #python #pythonprogramming #AdemolacodeMrIndelibel
0
0
0
The lambda keyword is an anonymous python function that takes any number of arguments and returns the value of a single expression. The lambda syntax is formatted like so: lambda arguments : expression. #learnpython #python #pythonprogramming #AdemolacodeMrIndelibel
0
0
0
The lambda keyword is used to create anonymous functions (functions that are not bound to a name). These functions are commonly used to simplify code. usage sum = lambda x, y : x + y print(sum(4,5)) #learnpython #python #pythonprogramming #AdemolacodeMrIndelibel
0
0
0
The assert keyword is used for debugging purposes. It checks if a condition is true, and if it is not, it will raise an error. usage x = 3 assert x < 2 print(x) #learnpython #python #pythonprogramming #AdemolacodeMrIndelibel
0
0
0
The global keyword is used to declare a variable as a global scope. usage: def my_func(): x = 0 def inner_func(): global x x += 1 print(x) inner_func() #learnpython #python #pythonprogramming #AdemolacodeMrIndelibel
0
0
0
The nonlocal keyword is used to declare a variable as an outer scope of the current function. usage: def my_func(): x = 0 def inner_func(): nonlocal x x += 1 print(x) inner_func() #learnpython #python #pythonprogramming #AdemolacodeMrIndelibel
0
0
0
If you have anyone who can take up this role please I form him or her
Job Role: Administrative Secretary This is a full-time remote role for an Administration Secretary. The Administration Secretary will be responsible for performing various clerical tasks, providing administrative assistance, managing schedules, and offering excellent customer
0
0
0
Annual renumeration #360,000.00 Living around Alakuko area of Lagos State. Send your cv to codinittechnologyltd@gmail.com #BBNaijaS10 #BBNaija
0
0
1
Experience in Scheduling and managing calendars Excellent organizational and multitasking abilities Ability to work independently and remotely Proficiency with office software (e.g., MS Office) High school diploma or equivalent. Savy in surfing the internet
1
0
0
service. Daily tasks include handling communication, organizing meetings, maintaining records, and supporting other administrative functions. Qualifications Proficiency in Clerical Skills and Administrative Assistance Strong Communication and Customer Service skills
1
0
0
Job Role: Administrative Secretary This is a full-time remote role for an Administration Secretary. The Administration Secretary will be responsible for performing various clerical tasks, providing administrative assistance, managing schedules, and offering excellent customer
1
0
1
If you are in need of job and you live within Alakuko, Lagos and environ kindly apply: https://t.co/UX8rUHvBLG
0
0
0
The async keyword is used to define an asynchronous function in python. usage async def my_async_func(): await some_async_task() #learnpython #python #pythonprogramming #AdemolacodeMrIndelibel
0
0
1
The await keyword is used to wait for an asynchronous function to complete before continuing with the program. usage: async def my_async_func(): await some_async_task() #learnpython #python #pythonprogramming #pythonlearning #AdemolacodeMrIndelible
0
0
0
The yield keyword is used to generate a sequence of values. it allows a function to provide values one at a time. Usage def my_func(): yield1 yield2 for num in my_func(): print(num) #learnpython #python #pythonprogramming #AdemolaCodeMrIndelible
0
0
0
The finally keyword is used to define a block of code that will be executed regardless of whether an exception occurs or not. usage try: x = 1/0 except Exception: print('Error Occured') finally: print('Finally Block Executed') #learningpython #python #learnpython
0
0
0
A woman who use charm collect person husband because she dey find pikin don finally find out say the man impotent and charm is irreversible.
0
0
0
The continue keyword is used to skip the remaining part of a loop body and return to the top of the loop. for i in range (10): if i == 5: continue print(i) #python #pythonprogramming #AdemolacodeMrIndelible #learningpython #pythonlearn
0
0
0