answersLogoWhite

0

"print" will output a value onto the screen for a user to see.

"input" or "raw_input" gets a user's input.

User Avatar

Wiki User

8y ago

What else can I help you with?

Continue Learning about Engineering

What is the full form of IDLE in python IDLE?

It means 'Integrated Development Environment'. Equivalent to the term IDE in general.


How will initialize an array to names of 10 students?

Use an initialisation list: std::array<std::pair<std::string,std::string>,10> students = { {"Albert","Einstein"}, {"Billy", "Kidd"}, {"Charlie","Chaplin"}, {"David","Essex"}, {"Eric","Idle"}, {"Fred","Flintstone"}, {"Gary", "Gilmore"}, {"Harold","Lloyd"}, {"Ian","Fleming"}, {"Jack","Black"} }; Alternatively, have the user input the information via std::cin (manual input or redirected from a file), or extract the data from an input stream.


What is the KWh for 500 kw induction motor on idle running?

on idle, probably 0. KWh = KW x time (hours) . eg. 20KW for 5 hours = 100KWh (edit. ignore this answer i do not know what exactingly a idle motor is)


What is idle time and what are its causes?

Generally idle time means that time for which the employer pays, but from which he obtains no production. Otherwise it is the difference between the time for which workers are paid but the workers do not work. So it is a loss to the organisation. It can be minimized but, cannot be controlled during idle time, the workers remain due and contribute nothing towards production. It is the difference between actual hour and actual hour worked. There are two types of idle times:Normal idle time: The normal idle time is that idle time which cannot be fully avoided but effective effort should be made to reduce it.Abnormal idle time: Abnormal idle time arises due to various causes which can be avoided. Abnormal idle time can be avoided if proper precautions are taken. Thus the factors which are responsible for controlling and avoiding idle time must be taken care of.Normal idle time is permitted but abnormal idle time should be avoided.ANSWER:Idle time indicates that time for which wages are paid to the workers but no production is obtained during that time. Following are the causes of idle time:- Due to machine break down- Power failures- Waiting for instructions- Waiting for tools or raw materials to start the production- Economic Causes includes: Seasonal, cyclical or industrial naturethis is unproductive time spent by employees due to factors beyond their controlThe above explanation is true as far as an industry or business centre is concerned.The true definition of idle time is the time utilized for non productive action. This has of two effects. One is useful effect, as certain engines/machines/equipments are advised to run a particular time idle immediately after its first start of a day, before putting in to full pludged utilization. To attain certain safe operating condition an idle time running is essential. The second is counter productive idle time which financially, ethically, functionally and ideologically negative to its envisaged scope.


When I start a 1996 Monte Carlo with the 3.4 DOHC motor it has an idle speed of 1000 rpms is that normal for this motor?

that would be good for the cold idle and should drop three times as the car warms up and should idle about 650 to 800 auto trans

Related Questions

When was Eric Idle Sings Monty Python created?

Eric Idle Sings Monty Python was created in 2000.


What actors and actresses appeared in The Meaning of Monty Python - 2013?

The cast of The Meaning of Monty Python - 2013 includes: John Cleese as himself Terry Gilliam as himself Eric Idle as himself Terry Jones as himself Michael Palin as himself


What are the release dates for Eric Idle Exploits Monty Python - 2002?

Eric Idle Exploits Monty Python - 2002 was released on: USA: 1 January 2002 (internet)


What is the full form of IDLE in python IDLE?

It means 'Integrated Development Environment'. Equivalent to the term IDE in general.


In 1999 what ex-member of Monty Python joined the cast of Suddenly Susan?

Eric Idle


What are the release dates for Monty Python's Personal Best - 2006 Eric Idle's Personal Best 1-1?

Monty Python's Personal Best - 2006 Eric Idle's Personal Best 1-1 was released on: USA: 22 February 2006


Did Monty python make a book?

Monty Python has not collectively written a book, but members of Monty Python of written books. Eric Idle has written several. Graham Chapman wrote an autobiography and I believe the Pythons are reuniting to make the book a movie.


Who wrote the show Monty Python?

Monty Python's Flying Circus was written by the members of the comedy group, Monty Python. These six members are Graham Chapman, Eric Idle, Terry Gilliam, Terry Jones, John Cleese, and Michael Palin.


Which members of Monty Python are still alive?

Terry Gilliam, Michael Palin, Eric Idle, and John Cleese


I'll tell you where the bomb is for a pound?

eric idle said it in a sketch from the series monty python when portraying a scottish terrorist.


How can I get input in python without python's input?

Standard File ObjectsLike many other languages, there are built-in file objects representing standard input, output, and error. These are in the sys module and are called stdin, stdout, and stderr. There are also immutable copies of these in __stdin__, __stdout__, and __stderr__. This is for IDLE and other tools in which the standard files have been changed.You must import the sys module to use the special stdin, stdout, stderr I/O handles.import sys For finer control over input, use sys.stdin.read(). In order to implement the UNIX 'cat' program in Python, you could do something like this:import sys for line in sys.stdin: print line, Note that sys.stdin.read() will read from standard input till EOF. (which is usually Ctrl+D.)Also important is the sys.argv array. sys.argv is an array that contains the command-line arguments passed to the program.python program.py hello there programmer! This array can be indexed,and the arguments evaluated. In the above example, sys.argv[2] would contain the string "there", because the name of the program ("program.py") is stored in argv[0]. For more complicated command-line argument processing, see the "argparse" module.


What was the names of the six original cast members of Monty Python's Flying Circus?

The Six Members of Monty Python are (in alphabetical order by last name): 1. Graham Chapman 2. John Cleese 3. Terry Gilliam (animator and only Python from America) 4. Eric Idle 5. Terry Jones 6. Michael Palin