#code_challenge write a code that take a name and age from the user then calculate the age of the user's age on next year and show the result like 'hello abebe next year,you will be 33' share your answer to us @zprogramming_bot
👍6🔥1
#code_challenge write a code that Check whether a list is empty or not
👍1
#code_challenge try to create a program that checks the password of a user, if the password is correct it should say welcome. if the password is not correct it should ask to re-write your password. by using while loop and if else condition
👍3❤1
#code_challenge
1. Make a list of five or more usernames, including the name
'admin'. Imagine you are writing code that will print a greeting to each user after they log in to a website. Loop through the list, and print a greeting to each user:
If the username is 'admin', print a special greeting, such as Hello admin, would you like to see a status report?
Otherwise, print a generic greeting, such as Hello john, thank you for logging in again.
.
1. Make a list of five or more usernames, including the name
'admin'. Imagine you are writing code that will print a greeting to each user after they log in to a website. Loop through the list, and print a greeting to each user:
If the username is 'admin', print a special greeting, such as Hello admin, would you like to see a status report?
Otherwise, print a generic greeting, such as Hello john, thank you for logging in again.
.
#code_challenge
Write a program that checks if a given number is even or odd.
Write a program that checks if a given number is even or odd.
#code_challenge write a code that checks if a given input is a palindrome or not.
A palindrome is a word, phrase, number, or sequence of characters that reads the same forwards and backwards. For example, words like "level," "radar," and "madam" are palindromes because they are spelled the same way in reverse.
A palindrome is a word, phrase, number, or sequence of characters that reads the same forwards and backwards. For example, words like "level," "radar," and "madam" are palindromes because they are spelled the same way in reverse.
👍7
#code_challenge Write a program that generates a random number between 1 and 100 and allows the user to guess the number. The program should provide hints (higher or lower) until the user guesses correctly.
#code_challenge write a code for a Given a string containing just the characters '(', ')', '{', '}', '[', and ']', determine if the input string is valid. An input string is valid if:
Open brackets must be closed by the same type of brackets.
Open brackets must be closed in the correct order
Open brackets must be closed by the same type of brackets.
Open brackets must be closed in the correct order
#code_challenge write a code that find the longest common prefix in the Given two strings.
for A2 members #code_challenge Median of Two Sorted list: Given two sorted lists nums1 and nums2, find the median of the entire sorted array.