Receive user profile and print on output
Write a program thatName,AgeAndCityReceive the user and print on the output
Write a program thatName,AgeAndCityReceive the user and print on the output
let msg = 'error' alert(msg)This answer is only visible to premium members
This answer is only visible to premium members
let msg = 'error' alert(msg)This answer is only visible to premium members
This answer is only visible to premium members
let msg = 'error' alert(msg)This answer is only visible to premium members
This answer is only visible to premium members
a = input("name:"),input("age:"),input("city:") print(f"name:{a[0]} , age:{a[1]} , city:{a[2]}")
name = input ('Enter name: ')
age = int (input ('Enter age: '))
city = input ('Enter city: ')
print ('Name:', name)
print ('age:', age)
print ('city:', city)
Name=input(' enter your name ') Age=input(' enter your age ') City=input(' enter your City ') print (name , age , City)
class Intrdouce: def __init__(self, name,age,city): self.name=name self.age=age self.city=city def Soulotion(self): print(self.name,self.age,self.city) name=input("enter your name:") city=input("enter your city:") age=int(input("enter your age:")) obj=Intrdouce(name,city,age) print(obj.Soulotion())
print("Enter name:") x = input() print("enter age:") y = input() print("enter city:") z = input() print("name:" , x ,'\n', "age:" , y ,'\n', "city:" , z)
def main(): # Get information from the user name = input("لطفاً نام خود را وارد کنید: ") age = input("لطفاً سن خود را وارد کنید: ") city = input("لطفاً شهر خود را وارد کنید: ") # Printing the received information print("\nاطلاعات شما:") print(f"نام: {name}") print(f"سن: {age}") print(f"شهر: {city}") # Implementation of the program main()
name=(input('name:')) age=int(input('age:')) city=(input('city:')) print('esm:',name,'senet:',age,'shahret:',city)
Submitting answers is currently unavailable.
Scissors Paper Play: 1- The user chooses one between paper or scissors. 2- Select the system by random. 3- With the choice of user and system, the result is displayed and the user's rating is calculated 4- ... ...
1- The user selects a number from 0 to 100 in his mind 2- The program guesss the user's desired number 3- The user according to the guessing number is one of the options (the correct guess, the number is larger, the number ... Moore ...
Write a function that receives a word and changes each letter to its next letter in the alphabet. Then returned the result. Indeed: "A" turns into "B" "" B "becomes" C "" C "becomes" D "and ........
Write a function that receives a list of numbers and generates 2 lists for pair and individual numbers and prints in the output example ([1,2,3,4]) Output: [1,3] [2,4] [2,4]
برای استفاده از این بخش باید وارد حساب کاربریت بشی
ورود/ثبت نام If you don’t understand the exercise or can’t solve it for any reason, that’s completely
normal—don’t worry 😊
Try checking out easier exercises and reviewing different answers
submitted by others. Gradually, you can move on to more challenging exercises. Also, your answer
might be correct even if it’s different from others.